0
votes
6answers
258 views

How to find the difference between two dates in same column?

I have a table SO_STATUS that writes a record for each status change for a service order (we'll call the Service_Order_ID "Job_ID"). Job_ID references SERVICE_ORDER table. When the service order is ...
0
votes
1answer
486 views

SQL Calculate Difference Between Current and Last Value By Timestamp Column

I am looking to calculate the difference between the current & last Value organised by the timestamp column? My table is organised as follows: MeterID(PK,FK,int.not null), ...
0
votes
3answers
195 views

query get the current date with condition

I need to get the date from date table minus 3 days (business days to be specific). Below is the structure: date business day 1/1/13 Y 1/2/13 N ...
0
votes
0answers
67 views

Executing tablediff file with no result

I have two databases, in client and server. Each time im adding something in client database, i want to update it in server, so im running Sql tablediff.exe. for (int i = 0; i < diffList.Count; ...
3
votes
1answer
84 views

find longest and fastest difference between dates in responce/updates

I have an issue finding the longest responce time and the shortest responce time. Three tables: T1.RESPONCE resp_id (bigint) resp_text (text) resp_created_date (datetime) resp_closed_date (datetime) ...
0
votes
2answers
151 views

how to display a String depending on DateDiff value in asp.net Gridview?

I have a query to display DATEDIFF of Task Completed date & Task DeadLine. I want to display whether the Task is completed in time or not and display result as "Completed in Time" and "Not ...
-3
votes
3answers
827 views

Create dates between two date range values from c#

I have a question on Date difference in (My)Sql with c#. In my database, I have a table containing date ranges like the following: ------------------------ From date to date ...
1
vote
1answer
65 views

PostgreSQL - how to fetch rows higher then year since the date

I have in the DATE column saved a dates. I try to get those rows, that are higher since that date about a year, two years etc. The year, two years is a parameter from my app. Is possible to get these ...
7
votes
3answers
20k views

How to compare two dates to find time difference in SQL Server 2005, date manipulation

I have two columns: job_start job_end 2011-11-02 12:20:37.247 2011-11-02 13:35:14.613 How would it be possible using T-SQL to find the raw amount of time that has ...