SQL Operators

April 16, 2024

select * from titles where emp_no > 10000 or title != '%engineer%';

select * from titles where emp_no > 10000 or title != 'engineer';

Last updated