Home > OS >  Why is the AND clause in my query being ignored (very simple SQL query)
Why is the AND clause in my query being ignored (very simple SQL query)

Time:05-01

this is the table im working with

--Write a query to display the name of those students that have the letters "ae" or "ph" in their name and are NOT 19 years old.

So this is my solution:

SELECT * FROM students WHERE (student_name LIKE '

  • Related