Mysql的增刪改查語句簡單實(shí)現(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 ;
刪除整個(gè)表:
添加列:
alter table tablename add column columnname columntype ... ;
刪除列:
alter table tablename drop column columnname ;
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
您可能感興趣的文章:- mysql增刪改查基礎(chǔ)語句
- mysql觸發(fā)器之觸發(fā)器的增刪改查操作示例
- Mysql表,列,庫增刪改查問題小結(jié)
- MySQL 詳細(xì)單表增刪改查crud語句
- mysql視圖之管理視圖實(shí)例詳解【增刪改查操作】
- MySQL表的增刪改查基礎(chǔ)教程