Jump to content

Less than or equal to.


korrupt_23

Recommended Posts

SELECT * FROM table WHERE number = 1

 

replace \"table\" with the name of your table

and \"number\" to name of the column you wish to check

 

Other examples:

 

Less than:

 

SELECT * FROM table WHERE number < 1

 

Greater Than:

 

SELECT * FROM table WHERE number > 1

 

Between

 

SELECT * FROM table WHERE number BETWEEN 1 AND 3

Link to comment
https://forums.phpfreaks.com/topic/1386-less-than-or-equal-to/#findComment-4586
Share on other sites

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.