明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

Mysql基本語句——增刪改查

[摘要]這篇文章主要介紹了Mysql的增刪改查語句簡單實現(xiàn)的相關資料,需要的朋友可以參考下Mysql的增刪改查語句簡單實現(xiàn)增加記錄:insert into tablename(...) values(...)//如果增加的記錄包括所有的列,則不需要寫數(shù)據(jù)列表insert into tablename va...
這篇文章主要介紹了Mysql的增刪改查語句簡單實現(xiàn)的相關資料,需要的朋友可以參考下

Mysql的增刪改查語句簡單實現(xiàn)

增加記錄:


insert into tablename(...) values(...)
//如果增加的記錄包括所有的列,則不需要寫數(shù)據(jù)列表
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 ;

以上就是Mysql基本語句——增刪改查的詳細內(nèi)容,更多請關注php中文網(wǎng)其它相關文章!


學習教程快速掌握從入門到精通的SQL知識。