Jump to content

[SOLVED] Selecting row with values


dreamwest

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.