Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
MySQL クエリで複数の「before」句を使用するにはどうすればよいですか? たとえば、身長が 20 から 25 で、体重が 50 から 70 の学生を選択したい場合。
WHERE height BETWEEN 20 AND 25 AND weight BETWEEN 50 AND 70
条件は、「一度にテーブル全体」ではなく、各行に 1 つずつ適用されることに注意してください。