首页 > 数据库 > MySQL

Mysql的增删改查语句简单实现

Mysql的增删改查语句简单实现

增加记录:

insert into tablename(...) values(...)
//如果增加的记录包括所有的列,则不需要写数据列表
insert into tablename values(...)

删除记录:

delete from tablename where condition ;

修改记录:

update tablename set xx=xx , xx=xx... where condition ;

alter table tablename set xx=xx , xx=xx... where condition ;

查询记录:

select (...) from tablename where condition ;

select * from tablename where condition ;

删除整个表:

drop table tablename ;

添加列:

alter table tablename add column columnname columntype ... ;

删除列:

alter table tablename drop column columnname ;

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。
本文地址:/shujuku/MySQL/106701.html

留言与评论(共有 0 条评论)
   
验证码:

潘少俊衡

| 桂ICP备2023010378号-4

Powered By EmpireCMS

爱享小站

中德益农

谷姐神农

环亚肥料

使用手机软件扫描微信二维码

关注我们可获取更多热点资讯

感谢潘少俊衡友情技术支持