MySql常用命令

2021-08-30 23:57:24 字數 2724 閱讀 9518

檢視mysql資料庫的資訊

status;

1.顯示所有資料庫

show databases;

2.切換資料庫

use new_dbname;

3.顯示資料庫中的所有表

show tables;

4.查詢表的字段資訊

desc table_name;

5.建立、刪除資料庫

create database db_name;

drop database db_name;

6.建立表、刪除表

create table table_name (欄位1 資料型別, 欄位2 資料型別 [, ...]);

drop table table_name;

7.插入記錄

insert into table_name (欄位1, 欄位2 [, ...]) values (值1, 值2 [, ...]);

8.更新記錄

update table_name set 欄位1='新值' [, ...] where id=id_num;

9.刪除記錄

delete from table_name where id=id_num;

10.增加字段

alter table table_name add column (欄位名, 字段型別);

11.制定位置增加字段

alter table table_name add column 欄位名 字段型別 after 某欄位;

12.刪除字段

alter table table_name drop 欄位名;

13.修改欄位名稱\型別

alter table table_name change 舊欄位名 新欄位名 新字段型別;

14.修改表名

alter table table_name rename to new_table_name;

eg:1. 建user表:

create table user (

id int primary key auto_increment,

name varchar(20) not null unique,

password varchar(20) not null,

address varchar(50) default '未填寫'

);

2.建customer表

create table customer (

cid int primary key auto_increment,

name varchar(20) not null unique,

password varchar(20) not null,

address varchar(50) default '未填寫',

uid int,

constraint foreign key (uid) references user(id) on delete set null

);

3.給customer表增加外來鍵

alter table customer add constraint foreign key (uid) references user(id) on delete set null;
4.一次插入多條記錄

insert into user (id, name, password, address) values (1, 'huaxia', '1919', 'suzhou'), (2, 'wh', '19', 'wuhan');
5.建立各種資料型別的表

create table user (

uid int, #整型

uprice decimal, #小數

uname varchar(255) default 'zhangsan', #普通長度文字

uremark text, #超長文字

uphoto blob, #

ubirthday datetime #日期

);

6.子查詢建表方法,列名和型別須對應。

create table userinfo (

name varchar(20),

*** char)as

select name, *** from user;

直接將整個表的型別和資料備份到新錶userinfo中

create table userinfo

asselect * from user;

7.新增多列

alter table user

add (

photo blob,

birthday date

);

8.修改列的位置,在第一列顯示:

alter table user modify name varchar(10) first;
9.一次修改多個列:

alter table user

modify name varchar(20) first,

modify password varchar(20) after name;

mysql基本常用命令 MySQL常用命令(一)

cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...

mysql巡檢常用命令 mysql 常用命令

客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...

mysql常用命令總結 mySql常用命令總結

總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...