摘要: ``` //创建表 create table Student( sname nchar(10) ) //插入行 insert into Student values('zhang') //插入行中指定的元素 insert into Student(sname) values('zhang') //根据条件删除行 delete from Student where sname='zha... 阅读全文
posted @ 2017-09-12 11:25 松源兄 阅读(142) 评论(0) 推荐(0) 编辑