這篇文章主要介紹了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 ;
以上是Mysql基本語句-增刪改查的詳細內容。更多資訊請關注PHP中文網其他相關文章!