Adding WHERE expression Adding a WHERE expression is as easy as: Which will produce: You can add AND into an existing WHERE expression: Which will produce the following SQL query: You can add OR into an existing WHERE expression: Which will produce the following SQL query: You can do an IN query with the WHERE expression: Which will produce the following SQL query: You can add a complex WHERE expression into an existing WHERE using Brackets…