page contents

写5条常用sql语句?

轩辕小不懂 发布于 2022-05-11 14:48
阅读 501
收藏 0
分类:Python开发
3577
Nen
Nen
- 程序员

show databases;

show tables;

desc 表名;

select * from 表名;

delete from 表名 where id=5;

update students set gender=0,hometown="北京" where id=5

请先 登录 后评论