mysql常用命令

2021-09-20 23:17:26 字數 1769 閱讀 8109

create database test_db; 建立名為test_db資料庫

use test_db; 進入test_db資料庫

show tables; 檢視資料庫裡有多少張表

drop database test_db ; 刪除資料庫

drop table test01 ;  刪除表

delete from test01 ; 清空表內容

show variables like '%char%'; 檢視資料庫字符集

insert into test01 values ("001","jf1"); 向表中插入資料。

select * from test01; 檢視test01表資料內容。

create table test01 (id varchar(20),name varchar(20));

grant all privileges on test_db.*  to  test@localhost identified by '123456';

grant  all  on  test_db.*      to  test@localhost identified by '123456';

grant  select,insert,update,delete on *.* to test@」%」  identified by  『123456』;給mysql資料庫授權。

flush  privileges;重新整理許可權

mysqldump –uroot –p123456  test_db >/tmp/test.db.sql   ;mysql備份或匯出

mysql –uroot –p123456 test_db  < /tmp/test.db.sql        ;mysql匯入

mysqladmin –uroot –p123456 password   newpassword    ;修改mysql root密碼

drop database test_db ; 刪除資料庫

drop table test01 ;  刪除表

delete from test01 ; 清空表內容

show variables like '%char%'; 檢視資料庫字符集

insert into test01 values ("001","ds"); 向表中插入資料。

select * from test01; 檢視test01表資料內容。

create table test01 (id varchar(20),name varchar(20));

alter table ip_can  drop id;刪除某一字段

alter table ip_can add id varchar(20);增加某一字段

alter table ip_can add id varchar(20) first;增加欄位在第一行

alter table active_user change city city varchar(25);  修改表中某一欄位

insert into ip_can(user_id,city_id,city,ip) values(1,1,1,1);指定插入字段資料

alter table ip_can change `id` `id` int(8) not null primary key auto_increment修改表中id為主鍵並自動增加

truncate table ip_can;初始化表是id從1開始記錄

alter table ip_can auto_increment = 1;設定id記錄從一開始記錄

後續持續更新中

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...