There is a request:
SELECT * FROM tbl WHERE wage > 100 AND people =
The question is what should I write after people =
(equals sign) so that it is equivalent to all the values ​​in the people column?
There is a request:
SELECT * FROM tbl WHERE wage > 100 AND people =
The question is what should I write after people =
(equals sign) so that it is equivalent to all the values ​​in the people column?
SELECT * FROM tbl WHERE wage > 100 AND people = people
Nothing to write. Just remove the extra condition.
SELECT * FROM tbl WHERE wage > 100
Source: https://ru.stackoverflow.com/questions/547020/
All Articles