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