mysql 基本操作

2021-08-29 13:52:06 字數 1428 閱讀 5955

前沿:

cmd進入mysql:

成功進入!

對資料庫的操作:

1.檢視資料庫:show databases;

2.建立資料庫:create database 資料庫名;

3.刪除資料庫:drop database 資料庫名;

4.使用資料庫:use 資料庫名;

對錶的操作:

1.定義表:

create table 表名 (列名   資料型別    【列級完整性約束條件】,

);【】裡的內容可有可無。

注:mysql是大小寫不敏感的語言。

2.修改表:

alter  table  表名 add  新的列名  資料型別;  增加新的列

alter  table 表名  add  unique (cname)  ;  增加完整性約束條件

alter table 表名   alter  column  sage  int  ; 改變某一列的資料型別;

3.刪除表:

drop  table  表名  【restrict|cascade】   【】裡的東西可以省略。預設是restrict。

restrict :刪除這個表要注意條件, 若該錶被其他表引用,或該錶有檢視,有觸發器等,則這個表刪不掉。

4.建立檢視:

create  view 檢視名

as select   列名

from  表名

where   約束條件;

檢視檢視結構:describe  檢視名;

檢視檢視內容 :select * from  檢視名;

建立索引:

create  【unique|cluster】index  索引名  on  表名  (列名  次序,……);

unique :每乙個索引只能對應惟一乙個資料記錄。

cluster:建立的索引是聚簇索引。(乙個表只能建立乙個聚簇索引)。

修改索引:

alter index 舊索引名 rename to 新索引名;

drop index 索引名。

mysql基本操作 MySQL基本操作

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...

mysql 基本操作 mysql基本操作

mysql 建立表,並設定主鍵自增 create table log logid int 4 primary key not null auto increment,logtitle varchar 32 not null logcontent varchar 160 not null logtim...

mysql基本操作

1,檢視資料庫狀態 及啟動停止 etc init.d mysqld status etc init.d mysqld start etc init.d mysqld stop 2,給使用者配置初始密碼123456 mysqladmin u root password 123456 3,修改root使...