DML(数据操作语言)

插入语句:

insert into student values('2012','张飞',‘博士后’,12);

删除记录:

delete from student where sname='张飞';

修改记录:

update student set age =13 where sname='张飞';
发布了99 篇原创文章 · 获赞 67 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_44867340/article/details/105565758
今日推荐