我試着從數據庫中查詢最後一行,所以我用這個函數LAST(column_name)
。它不適合我,我不知道爲什麼。
這是一條錯誤消息,phpMyAdmin的回信我SQL LAST()函數不能與phpmyadmin一起使用?
SQL query: Documentation
SELECT LAST(power) FROM f01_r02
LIMIT 0, 25
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '(power) FROM f01_r0 LIMIT 0, 25' at line 1
我做的請點擊此鏈接
SQL LAST() Function
其實,我知道有很多的方法在MySQL中obtian最新的行數據,但我想先試試這個功能,如果不可能使用這個功能,我會去另一個解決方案。
LAST()函數僅在MS Access中受支持。 – Saty
使用按列desc命令,然後LIMIT 1 –
@Saty非常感謝你 – Nothingnez