Hi Im looking and searching the internet for any idea why this problem occurs:
Below query works (but missing an important field "id")
SELECT DISTINCT ITEM , NAME , PRICE , IMGFROM iflorist WHERE PRICE >= 30 and PRICE <= 39.99 ORDER BY NAME DESC LIMIT 0 , 999
"id" // int(11) - auto_increment - index
SELECT DISTINCT ITEM , NAME , PRICE , IMG , id FROM iflorist WHERE PRICE >= 30 and PRICE <= 39.99 ORDER BY NAME DESC LIMIT 0 , 999
Im just trying to get distinct records from between a set price range ??