Hello! Please help me understand. There is a table with a price column (int type) there are records 50, 75, 100 in it ... I am trying to output values from 51 to 100
SELECT * FROM table WHERE price >= 51 AND price <= 100
price BETWEEN 51 AND 100 - doesn't work either
I get only 100, what's the problem?