一、對資料庫修改
1.刪除資料庫
drop database 資料庫名字;
二、對一張表修改
1.重新命名一張表
rename table 原名 to 新名字;
alter table 原名 rename (to) 新名;
2.刪除一張表
drop table 表名字;
三、對一列修改
1.增加一列資料
alter table 表名字 add (column) 列名字 資料型別 約束;
alter table employee add height int(4) default 170;
alter table employee add weight int(4) default 120 after age;
alter table employee add test int(10) default 11 first;
2.刪除一列資料
alter table 表名字 drop (column) 列名字;
3.重新命名一列
alter table 表名字 change 原列名 新列名 資料型別 約束;
4.改變資料型別
alter table 表名字 modify 列名字 新資料型別;
四、對錶的內容修改
1.修改表中某個值
update 表名字 set 列1=值1,列2=值2 where 條件;
2.刪除一行記錄
delete from 表名字 where 條件;
對資料庫的修改和刪除
事務 transaction 由查詢和更新語句的序列組成。sql標準規定當一條sql語句被執行,就隱式地開始了乙個事務。下列sql語句之一會結束乙個事務 commit work 提交當前事務,也就是將該事務所做的更新在資料庫中持久儲存。在事務被提交後,乙個新的事務自動開始。rollback work...
mysql資料庫表的修改及刪除
一 對資料表的修改 1 重新命名一張表 rename table 原名 to 新名字 alter table 原名 rename 新名 alter table 原名 rename to 新名 2 刪除一張表 drop table 表名字 3 對一列表做修改 即對錶結構的修改 alter table ...
MYSQL對資料庫和表的基本操作
create database testdb charset utf8 建立乙個資料庫 名字叫做testdb use testdb 選擇資料庫 create table testtable1 id int 11 not null primary keyauto increment,username ...