Skip to content

Tag: sql-server

Loop in SQL and increase one field each time

Create table for store raw data: Create table for processed data: Now store raw data: I am turning a comma separated string into individual rows: Like this: value 10 2 0 95 15 I want to insert into SplittedAndProcessedData table using a loop, like this: ID count 1 8500 2 8510 3 8512 4 8512 5 8607 6 8622 Which

Is it possible to sum up time field in SQL Server?

I have 3 time(0) column in 1 row. I want to calculate arrival-Time column automatically and this is result of the sum of Departure-Time + Duration is it possible with trigger or computed area method? thanks in advance Answer SQL Server does not support direct addition on time values; however, you can use date…

Date Format Convert

I am dealing with sql DB where the date is recorded in this format ‘2020-348T08:55’. I need to convert this to datetime. Please guide if there is possible way to do that? Answer With string and date/time functions extract the year and days to create a DATETIME without the time and finally add the …