摘要:
-- 在t_student数据库表中插入数据insert into s_student values(1,'张三','男','18','2002-12-02','软件2班','123@123.com');INSERT INTO s_student values(2,'李四','男','18','20 阅读全文
摘要:
创建数据库表语法: create table 表名 例如创建一个学生表(每一行代表一个记录,每一列代表一个字段) create table s_student(son int(6), -- 6显示长度 学号 sname varchar(5), -- 5个字符 名字sex char(1), 性别age 阅读全文