1. 程式人生 > >mysql 語法總結

mysql 語法總結

lec word tab password chang 創建用戶 limit 處的 建表

創建數據庫
創建數據庫並設置數據庫默認字段編碼格式

create database database_name default charset utf8 collate utf8_unicode_ci;


設置auto_increment字段的最小值

ALETER TABLE table_name AUTO_INCREMENT=100000

查看表
show tables
修改表
1、創建表格時添加: create table tablename(id int auto_increment primary key,...)

2、創建表格後添加: alter table tablename add id int auto_increment primary key

3、設置主鍵:alter table tablename add primary key(field_name);

4、重命名表: alter table table_old_name rename table_new_name;

5、改變字段的類型:alter table tableName modify field_name field_type;

6、重命名字段:alter table tableName change old_field_name new_field_name new_field_type;

7、刪除字段:alter table tableName drop column field_name;

8、增加一個新字段:alter table tableName add new_field_name field_type;
alter table tableName add new_field_name field_type not null default ‘0‘;

查看索引
show index from 表
show keys from 表
添加索引
ALTER TABLE table_name ADD INDEX index_name (column_list)
ALTER TABLE table_name ADD UNIQUE (column_list)
ALTER TABLE table_name ADD PRIMARY KEY (column_list)
刪除索引
ALTER TABLE table_name DROP INDEX index_name
ALTER TABLE table_name DROP PRIMARY KEY

創建用戶
insert into mysql.user(Host,User,Password) values("localhost","test",password("1234"));
這樣就創建了一個名為:test 密碼為:1234 的用戶。
註意:此處的"localhost",是指該用戶只能在本地登錄,不能在另外一臺機器上遠程登錄。
如果想遠程登錄的話,將"localhost"改為"%",表示在任何一臺電腦上都可以登錄。也可以指定某臺機器可以遠程登錄。

授權
1.grant all privileges on *.* to ‘myuser‘@‘%‘ identified by ‘mypassword‘ with grant optioin;
2.flush privileges

相看表結構

desc tablename

豎著顯示數據

select host,user,password from mysql.user limit 1 \G 這條語句帶不帶分號都可以

mysql 語法總結