操作mysql資料庫的一些命名

2022-08-04 20:06:21 字數 957 閱讀 4459

一、開啟資料庫

1.1、開啟命令列輸入:mysql -u root -p

1.2、root是本地資料庫的使用者名稱,然後輸入資料庫的密碼進入。

二、資料庫操作

2.1、建立乙個資料庫:create database 資料庫名 ;

2.2、檢視當前有哪些資料庫:show databases ;

2.3、更改資料庫字符集:alter database 資料庫名 charset gbk ;

2.4、進入資料庫:use 資料庫名;

三、表操作

3.1、建立表   

create table 表名 (

name varchar(10) , 

age varchar(10) , 

sno  int  primary key(id)

) charset utf8;

3.2、檢視所有的資料表:show tables;

3.3、檢視該錶結構:  desc 表名 ;

describe 表名;

show columns from  表名;

3.4、修改表名:

rename table 原表名 to 新錶名;

alter  table  舊表名  rename  新錶名;

3.5、修改字段:

3.5.1、新增add:alter table  表名  add  欄位名  資料型別  [位置];  注:位置如first ,after  id 等。

3.5.2、修改modify:alter table 表名  modify  欄位名  資料型別  [位置]; 

3.5.3、重新命名change:lter table 表名  change  舊欄位名  新欄位名  資料型別 ;

3.5.4、刪除drop:alter  table  表名   drop   欄位名;

3.6、刪除表:drop  table  表名1,表名2,。。。; 

mySql資料庫的一些操作

mysql下讀取表中字段的說明和備註資訊 在mysql下執行完下面這個建表語句後。如何從資料字典中,檢索出這個表的字段的相關資訊?drop table if exists test table create table test table test id int not null auto inc...

mysql資料庫一些常規操作

1.為指定mysql使用者指定表授權 grant select,insert,update,delete on testdb.orders to dba localhost 2.檢視當前mysql所有使用者 select distinct concat user user,host,as query...

一些資料庫的操作

建立乙個資料庫 create database database name 刪除乙個資料庫 drop database database name 顯示資料庫 show databases 進入某個資料庫 use database name 建立乙個資料表 create table database...