我想知道是否有人可以幫助我解決這個小問題。選擇不超過
我想從數據庫中選擇一些數字,其中數字不超過設定的數字。
這是我(摘錄):
$Level = "1"; //Retrieved from the DB, just keeping it simple.
@$Query = mysql_query("SELECT * FROM users,store WHERE users.ID = '$ID' AND store.LevelReq <='users.Level'");
與此問題,它不會顯示任何東西,等於$的水平。 (Item ... Level:0) - Displays (Item ... Level:1) - 不顯示。
所以我想要的是相當於php的!> 1(不超過1),但是如果可能的話使用MYSQL格式,但是這不起作用。
看起來你不會在MySQL查詢中的任何地方使用'$ Level'。 –
您的意思是寫嗎?:'... AND store.LevelReq <='$ Level'「);' –
[PHP中沒有'!>'運算符。](http://www.php.net /manual/en/language.operators.comparison.php) –