Example of database query

This is a database table.
Rec #Field1Field2Field3
1PaulJohnson450
2GeorgeBrown335
3PaulGray845
4TomYoung335
5TomSanders400

Given the table above, what would be the resulting table for this query?
Field1
Paul
The query would result in the records #1 and #3.

Given the table above, what would be the resulting table for this query?
Field1 Field3
George
>400
The query would result in the records #1, #2 and #3.

Given the table above, what would be the resulting table for this query?
Field1 Field3
Tom <375
The query would result in the record #4.