Regex Każde słowo oprócz SQL
SELECT first_name
FROM emplyoees
WHERE first_name NOT LIKE '%Steven%' /*anyone except Steven :(*/
mahmud
SELECT first_name
FROM emplyoees
WHERE first_name NOT LIKE '%Steven%' /*anyone except Steven :(*/