mysql資料庫打折命令 Mysql資料庫常用命令

2021-10-19 19:33:44 字數 2454 閱讀 9189

1.建立資料庫:

1 mysql> create database test ; // 在mysql裡面建立資料庫,資料庫的id是test。

3 [root@host] # mysqladmin -u root -p create test ; // 在linux下建立資料庫,資料庫的id是test。

2.刪除資料庫:

mysql> drop database test ; // 在mysql裡面刪除資料庫,資料庫的id是test。

[root@host] # mysqladmin -u root -p drop test ; //在linux下刪除資料庫,資料庫的id是test。

3.建立資料表:

root@host# mysql -u root -p

enter password:*******

mysql> use runoob; //選擇資料庫

database changed

mysql> create table runoob_tbl( //資料表的名字是runoob_tbl

-> runoob_id int not null auto_increment,

-> runoob_title varchar(100) not null,

-> runoob_author varchar(40) not null,

-> submission_date date,

-> primary key ( runoob_id )

-> )engine=innodb default charset=utf8;

query ok, 0 rows affected (0.16 sec)

4.刪除資料表:

root@host# mysql -u root -p

enter password:*******

mysql> use runoob;

database changed

mysql> drop table runoob_tbl //刪除資料表 runoob_tbl

query ok, 0 rows affected (0.8 sec)

5.select查詢:

select * from runoob_tbl ; //查詢表 runoob_tbl

select ip,username from runoob_tbl ; //查詢runoob_tbl表中ip和username欄位

select ip from runoob_tbl where username="woniu" ; //在runoob_tbl表中查詢欄位username=「woniu」的ip

select ip from runoob_tbl where username="woniu" order by ip desc ; //在runoob_tbl表中查詢欄位username=「woniu」的ip,按照ip倒序

6.常用命令

1 show databases; //顯示所有的庫

3 use test; //選擇資料庫,庫的id是test

5 show tables; //顯示庫中所有的表,要先use 選中資料庫

7 show create table runoob_tbl; //檢視表結構

9 show index from //顯示資料表的詳細索引資訊,包括primary key(主鍵)。

11 quit/exit //退出mysql

7.模糊查詢--like

mysql> select * from runoob_tbl where username like '%wugui'; //在 runoob_tbl 表中獲取 runoob_author 欄位中以 wugui為結尾的的所有記錄

'%a' //以a結尾的資料

'a%' //以a開頭的資料

'%a%' //含有a的資料

查詢以 mysql欄位開頭的資訊。

select * from runoob_tbl where name like 'mysql%';

查詢包含 mysql欄位的資訊。

select * from runoob_tbl where name like '%mysql%';

查詢以 mysql欄位結尾的資訊。

select * from runoob_tbl where name like '%mysql';

8.msyql插入百萬資料

insert into warn_message(username,strength,ip,port,clienttype,logtime,country,warn_type) select username,strength,ip,port,clienttype,logtime,country,warn_type from warn_message;

9.修改資料表的預設編碼格式

alter table 表名 convert to character set utf8(latin1);

10.清空表資料

mysql資料庫打折命令 mysql資料庫常用命令

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

資料庫mysql軟體安裝 資料庫軟體mysql安裝

2.解壓至欲安裝的目錄下 3.開啟cmd,進入軟體目錄下d qmdownload mysql 5.7.24 winx64 bin,執行mysqld 4.初始化使用者 cmd d qmdownload mysql 5.7.24 winx64 bin,執行mysqld initialize insecu...

mysql資料庫之python鏈結mysql

使用之前請在命令列pip install pymysql import pymysql 1.建立鏈結 conn pymysql.connect host 127.0.0.1 ip位址 port 3306,埠號 database database name 資料庫名稱 user mysql usern...