程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql語法,mysql語法大全

mysql語法,mysql語法大全

編輯:MySQL綜合教程

mysql語法,mysql語法大全


查詢數據表中某個字段的值:
Select <列的集合> from <表名> where <條件> order by <排序字段和方式>
1.創建數據庫:create  database  數據庫名  【charset  數據編碼名】 【collate 排序規則名】;
2.修改數據庫:alter  database  數據庫名 【charset  新的數據編碼名】 【collate  新的排序規則名】
3.刪除數據庫:drop  database 【if  exists】 數據庫名;
4.使用(進入)某數據庫:use  數據庫名;
5.顯示所有數據庫名:show databases;
6.修改數據表的字段的值:update 表名 set 字段='要修改後的值' where 定位字段='值'  例:update 
7.顯示所有數據庫: show databases;
8.顯示某個數據庫的所有表:show full tables from mblogs where table_type = 'base table';
9.顯示數據庫編碼:show charset
10.創建表單:create table mblogs. m_linkss(id int(4) not null auto_increment,link_name varchar(60),primary key (id))engine=myisam charset=utf8 collate=utf8_general_ci
11.刪除表:drop table mblogs.m_linkss;
12.修改表是指修改表的結構或特性。理論上創建一個表能做到的事情,修改表也能做到。修改表有二三十項修改項,包括增刪改字段,增刪索引,增刪約束,修改表選項等等。舉例如下:
13.添加字段:alter table 表名 add [column] 新字段名 字段類型 [字段屬性列表];
14.修改字段(並可改名):alter table 表名 change [column] 舊字段名 新字段名 新字段類型 [新字段屬性列表];
15.修改字段(只改屬性):alter table 表名 modify [column] 字段名 新字段類型 [新字段屬性列表];
16.刪除字段:alter table 表名 drop [column] 字段名;
17.添加普通索引: alter table 表名 add index [索引名] (字段名1[,字段名2,...]);
18.添加主鍵索引(約束):alter table 表名 add primary key (字段名1[,字段名2,...]);
19.添加外鍵索引(約束):alter table 表名1 add foreign key (字段1,[,字段名2,...]) references 表名2(字段1,[,字段名2,...]);
20.添加唯一索引(約束):alter table 表名 add unique (字段名1[,字段名2,...]);
21.添加字段默認值(約束):alter table 表名 alter [column] 字段名 set default 默認值;
22.刪除字段默認值(約束):alter table 表名 alter [column] 字段名 drop default;
23.刪除主鍵:alter table 表名 drop primay key;#每一個表最多只能有一個主鍵
24.刪除外鍵:alter table 表名 drop foreign key 外鍵名;
25.刪除索引:alter table 表名 drop index 索引名;
26.修改表名:alter table 表名 rename [to] 新表名;
27.修改表選項:alter table 表名 選項名1=選項值1,選項名2=選項值2,...; 
28.修改數據庫密碼:update `pro_systemuser` set  password=MD5(123456) where name='admin';

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved