庫
show databases 顯示所有庫
use 庫名 選擇庫
create database 庫名 建立庫
show create database 庫名 庫詳細資訊
drop database 資料庫 刪除庫
表show tables 顯示所有表
drop table 刪除表
create table 表名(id int ,name varchar(10),........) 建立表及字段
alter table 舊表名 rename 新錶名 修改表名
create table 表名 like 被複製的表名 複製表結構
create table 表名 select * from 被複製的表名 複製表結構及+表中資料
欄位alter table 表名 change 舊欄位 新字段 型別() 修改欄位名
alter table 表名 modify 字段 型別() 修改字段型別
alter table 表名 modify primary key 存在的字段 給存在的字段加主鍵
alter table 表名 add 字段 型別() 新增字段
alter table 表名 drop 字段 刪除字段
資料insert into 表名values(值… ),(值… ); 插入多條資料
select * from 表名 where 條件 根據條件查詢表中所有資料
約束not null 不可為空
default 預設
primary key 主鍵
unique 唯一
foreign key 外來鍵
資料庫常用語句
列出所有資料庫資訊 show databases 轉到某個資料庫 use database name 列出某個資料庫的所有表資訊 show tables 建立資料庫 create database database name 建立資料庫表 create table mytable name varc...
資料庫常用語句
1 說明 建立資料庫 create database database name 2 說明 刪除資料庫 drop database dbname 4 說明 建立新錶 create table tabname col1 type1 not null primary key col2 type2 not...
資料庫常用語句
查詢資料庫中有標識列的表 declare tablename varchar 500 result int set tablename set result 0 declare my cursor cursor for select distinct o.name from sysobjects o...