資料庫
列出所有資料庫:show databases;
建立新資料庫:create database 《資料庫名稱》;
刪除資料庫:drop database 《資料庫名稱》;
切換到當前資料庫:use 《資料庫名稱》;
表列出當前資料庫所有表:show tables;
檢視表結構:desc 《表名》;
建立表:create table 《表名》;
刪除表:drop table 《表名》;
新增一列:alter table 《表名》 add column 《列名》 《資料型別》;
修改列名:alter table 《表名》 change column 《要修改列名》 《修改後列名》《資料型別》;
刪除列:alter table 《表名》 drop column 《列名》;
退出sql:exit
SQL 收藏 SQL操作全集
sql操作全集 7 d x a0d r d g0e x 下列語句部分是mssql語句,不可以在access中使用。7x k sql分類 ddl 資料定義語言 create,alter,drop,declare 9j3u i l t w r3 z dml 資料操縱語言 select,delete,up...
SQL 收藏 SQL操作全集
sql 收藏 sql操作全集 sql操作全集 7 d x a0d r d g0e x 下列語句部分是mssql語句,不可以在access中使用。7x k sql分類 ddl 資料定義語言 create,alter,drop,declare 9j3u i l t w r3 z dml 資料操縱語言 s...
SQL游標操作
select count id from info select from info 清除所有記錄 truncate table info declare i int set i 1 while i 1000000 begin insert into info values justin str i...