【单选题】若用如下 SQL 语句创建一个 student 表: create table student ( id char (4) not null, name char (8) not null, sex char (2), age smallint (2) ) 可以插入到 student 表中的是
A.
(’1031’, ‘ 张三 ’, 男, 23)
B.
(‘1031’, ’ 张三 ’, NULL, NULL)
C.
(NULL, ’ 张三 ’, ’ 男 ’, ’23’ )
D.
(‘1031’, NULL, ’ 男 ’, 23 )