webguync Posted July 12, 2010 Share Posted July 12, 2010 I have two tables with two fields, both timestamps. I need to set up a Query to subtract the difference in minutes between the two fields (login_timestamp and submit_timestamp). login_timestamp is in a table called 'Candidates' and submit_timestamp is in a table called 'Responses'. I believe I would need to use. SELECT TIMESTAMPDIFF(MINUTE,'2010-05-17 12:26:13','2010-05-17 11:32:45'); but a little unsure about how to from two different tables. Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/207510-query-to-determine-timestamp-difderence-with-two-different-fieldstables/ Share on other sites More sharing options...
lemmin Posted July 12, 2010 Share Posted July 12, 2010 I think something like this would work. SELECT ABS(MINUTE(c.login_timestamp)-MINUTE(r.submit_timestamp)) FROM Candidates c, Responses r WHERE [...] Link to comment https://forums.phpfreaks.com/topic/207510-query-to-determine-timestamp-difderence-with-two-different-fieldstables/#findComment-1084908 Share on other sites More sharing options...
webguync Posted July 12, 2010 Author Share Posted July 12, 2010 I'll give that a try, thx. Link to comment https://forums.phpfreaks.com/topic/207510-query-to-determine-timestamp-difderence-with-two-different-fieldstables/#findComment-1084940 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.