用MySQL语法建 一个学生表,包括学生姓名、性别、年龄、班级信息。时间:2025-02-28 07:58:10(1)创建表的SQL语句 create table student ( ID int primary key not null, NAME varchar(50), sex int, age int, classNO in )