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! Quote 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 [...] Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.