Question:Which one of the following correctly selects rows from the table myTable that have null in column column1?
A SELECT * FROM myTable WHERE column1 is null
B SELECT * FROM myTable WHERE column1 = null
C SELECT * FROM myTable WHERE column1 EQUALS null
D SELECT * FROM myTable WHERE column1 NOT null
E SELECT * FROM myTable WHERE column1 CONTAINS null
+ AnswerA
+ Report