dreamwest Posted April 21, 2009 Share Posted April 21, 2009 I need to select the last row from a column with a value, so thought something like this: $result = mysql_query("SELECT * FROM example WHERE cost !='' ORDER BY id DESC LIMIT 1") or die(mysql_error()); But it doesnt work, Im guessing change to this but i need to make sure its right first before i try it $result = mysql_query("SELECT * FROM example WHERE cost NOT NULL ORDER BY id DESC LIMIT 1") or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/ Share on other sites More sharing options...
Mchl Posted April 21, 2009 Share Posted April 21, 2009 try IS NOT NULL Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/#findComment-815309 Share on other sites More sharing options...
dreamwest Posted April 21, 2009 Author Share Posted April 21, 2009 try IS NOT NULL I dont know why this still isnt working: $result = mysql_query("SELECT * FROM example WHERE total IS NOT NULL ORDER BY id DESC LIMIT 1") or die(mysql_error()); Throw this error: 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 'WHERE total IS NOT NULL ORDER BY id DESC LIMIT 1' at line 1 Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/#findComment-815315 Share on other sites More sharing options...
Mchl Posted April 21, 2009 Share Posted April 21, 2009 Try putting table name (example) in backticks `` SELECT * FROM `example` WHERE total IS NOT NULL ORDER BY id DESC LIMIT 1 Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/#findComment-815319 Share on other sites More sharing options...
dreamwest Posted April 21, 2009 Author Share Posted April 21, 2009 Thanks. Its working now. Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/#findComment-815325 Share on other sites More sharing options...
Mchl Posted April 21, 2009 Share Posted April 21, 2009 Congratulations. You have discovered undocumented reserved word. Link to comment https://forums.phpfreaks.com/topic/155012-solved-selecting-row-with-values/#findComment-815328 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.