摘要:
删除表(格式:drop table 表名/drop table if exists 表名) drop table student;删除学生表drop table if exists teacher ; 删除teacher表,如果这个表存在(删除多个表格可以逗号加表名) 删除数据(delete fro 阅读全文
摘要:
创建表要求:创建一个教师表teacher,身高保留两位小数drop table if exists teacher; (如果存在一个表teacher,删除它;这是避免表名已经存在无法创建新表) create table teacher( (创建一个教师表,表名是teacher) id int uns 阅读全文