我想獲得結果,其中一列中的值大於另一列中的值。如何檢查一列值是否大於mysql中的另一列
例
select * FROM myTable where column time_taken is greater than time_spent
感謝您的幫助。
我想獲得結果,其中一列中的值大於另一列中的值。如何檢查一列值是否大於mysql中的另一列
例
select * FROM myTable where column time_taken is greater than time_spent
感謝您的幫助。
select * FROM myTable where time_taken > time_spent
要查看MySql中可用的其他運算符的列表,請查看http://dev.mysql.com/doc/refman/5.0/en/non-typed-operators.html
select * from myTable where time_taken > time_spent
搞清楚小於,小於等於,大於等於是作爲練習留給讀者。
我認爲你在那裏有額外的東西(我幾乎做了同樣的事情打字我的) – 2011-01-11 03:47:16