get difference between two double precision columns
-
I am trying to compute the difference between two double precision columns, start_time and stop_time. I used this select statement: Select (stop_time - start_time) AS Duration From table; The result I get back is a column name Duration with empty cells. What should be the correct syntax? Thanks.
-
I am trying to compute the difference between two double precision columns, start_time and stop_time. I used this select statement: Select (stop_time - start_time) AS Duration From table; The result I get back is a column name Duration with empty cells. What should be the correct syntax? Thanks.
-
What are datatypes of columns stop_time and start_time ?
I Love T-SQL "Don't torture yourself,let the life to do it for you." If my post helps you kindly save my time by voting my post.
-
I am trying to compute the difference between two double precision columns, start_time and stop_time. I used this select statement: Select (stop_time - start_time) AS Duration From table; The result I get back is a column name Duration with empty cells. What should be the correct syntax? Thanks.