林坐在一個小問題..主持人日期時間
在我的數據庫,我有一個包含2個日期時間的表..
TABLE1已經turn_time爲datetime價值0000-00- 00 23時59分59秒
TABLE2具有last_move作爲日期時間值2013年9月23日14時20分十九秒
我想在SQL中計算turn_time + last_move < NOW()。
但結果即時得到回看起來是這樣的: 40261846333938.000000
我會得到怎樣一個簡單的選擇回到當前行的,如果turn_time + last_move < NOW()?
我的SQL:
SELECT * FROM active_games
INNER JOIN games
ON active_games.fk_games_id = games.games_id
INNER JOIN product
ON active_games.fk_product = product.product_id
INNER JOIN users
ON active_games.fk_user_id_turn = users.user_id
INNER JOIN user_profile
ON users.user_id = user_profile.fk_user_id
WHERE turn_time + last_move < NOW()
感謝您的時間。
是否涉及SQL Server? –
如果添加兩個DateTime,您期望得到什麼樣的結果? – Magnus