单项选择题
A.外连接B.内连接C.左连接D.右连接
A.select *from students where gender=1limit 1,3;B.select *from students where gender=1limit 0,3;C.select *from students where gender=1limit 1,4;D.select *from students having gender=1limit 0,3;
A.select *from students where height is nullB.select *from students where height=nullC.select height is null from studentsD.select height=null from students