试题详情

Mysql中表student_table(id,name,birth,sex),插入如下记录:(‘1001‘,‘‘,‘2000-01-01‘,‘男‘);(‘1002‘,null,‘2000-12-21‘,‘男‘);(‘1003‘,NULL,‘2000-05-20‘,‘男‘);(‘1004‘,‘张三‘,‘2000-08-06‘,‘男‘);(‘1005‘,‘李四‘,‘2001-12-01‘,‘女‘);执行select*fromstudent_tablewherename<>‘张三‘的结果行数是()?

A 1

B 2

C 3

D 4