Official Academy Discussion

SQL Injection module:

Q: In the ‘titles’ table, what is the number of records WHERE the employee number is greater than 200000 OR their title does NOT contain ‘engineer’?

A: 404791 (wrong)

My query: select * from titles where emp_no>200000 OR title!=‘Engineer’;

Edit: nevermind I got the solution.