MySQL常用的指令

2022-05-13 02:17:31 字數 1518 閱讀 1483

常用的資料型別

mysql結束符是「;」結束。

1.顯示宿友資料庫

show databases;

2.刪除資料庫

drop database dbname;

3.建立資料庫

drop database [if not exists] dbname;

中的括號部分是可選的, 判斷該資料庫不存在就建立

4.切換、使用指定資料庫

use dbname;

5.顯示當前使用資料庫所有的表物件

show tables;

6.顯示標的結構 describe(desc)

desc tablename;

7.alter table的使用

首先展示表t1。表t1採用如下方法建立:

mysql>create table t1 (a integer,b char(10));
把錶t1重新命名為t2:

mysql>alter table t1 rename t2;
把列a從interger更改為tinyint not null(名稱保持不變),並把列b從char(10)更改為char(20),同時把列b重新命名為列c:

mysql>alter table t2 modify a tinyint not null, change b c char(20);
新增乙個新的timestamp列,名稱為d:

mysql>alter table t2 add d timestamp;
在列d和列a中新增索引:

mysql>alter table t2 add index (d), add index (a);
刪除列c:

mysql>alter table t2 drop column c;
新增乙個新的auto_increment整數列,名稱為c:

mysql>alter table t2 add c int unsigned not null auto_increment,
->add primary key (c);
注意我們為c編制了索引(作為primary key),因為auto_increment列必須編制索引。同時我們定義c為not null,因為主鍵列不能為nul

mysql常用指令 Mysql常用指令

mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...

MySQL的常用指令

1.顯示所有使用者 select host user from mysql.user 2.建立新使用者指令 grant allon 資料庫名.to 使用者名稱 主機名 identified by 密碼 create user 使用者名稱 主機名 identified by 密碼 無任何許可權3.刪除...

mysql手機指令 MySQL常用指令

mysql相關指令 資料庫排序規則 常用utf8 general ci 1cmd連線資料庫 1.版本檢視 mysqladmin version 2.連線root mysql u root p,輸入密碼 退出ctrl c 或quit 2查詢資料庫 show databases 3查詢資料表 show ...