mysql ls命令 Mysql常用命令

2021-10-19 16:50:48 字數 1286 閱讀 7679

檢視資料庫列表:show databases;

建立資料庫:create datebase 庫名;

切換到資料庫:use 庫名;

檢視表列表:show tables;

建立表:create table 表名(列1 屬性,列2 屬性, 列3 屬性);

檢視表:desc 表名;

重新命名表:alter table 表名 rename 新錶名;

刪除表:drop 表名;

新增列:alter table 表名 add 列名 屬性;

修改列屬性:alter table 表名 modify 列名 屬性;

重新命名列:alter table 表名 change column 列名 新列名 屬性;

刪除列:alter table 表名 drop column 列名;

插入行:insert into 表名(列1,列2,列3) values(值1,值2,值3);

查詢行:

1、select 列1,列2 from 表名;

2、select * from 表名;

3、select * from 表名 where 列 運算子 值;

刪除行:delete from 表名 where 列 運算子 值;

更新行:update 表名 set 列=新值 where 列 運算子 值;

建立使用者:create user 使用者名稱 identified by 密碼;

重新命名使用者:rename user 使用者名稱 to 新使用者名稱;

刪除使用者:drop user 使用者名稱;

修改密碼:set password for 使用者名稱 = password('新密碼');

授予許可權:grant all privileges on *.* to '使用者名稱'@'主機' identified by '密碼';

撤銷許可權:revoke all privileges from 使用者名稱;

備份資料庫:mysqldump -uroot -p'密碼' 庫名 > 備份檔案名.sql

恢復資料庫:mysql -uroot -p'密碼' 庫名 < 備份檔案名.sql

顯示支援的編碼:show character set;

顯示當前庫的編碼:

show variables like 'character_set%';

show variables like 'collation%';

建立指定編碼的資料庫:

create database 庫名 default character set utf8,default collate uft8_general_ci;

mysql檢視mylog命令 mysql常用命令

連線mysql 1.登入mysql資料庫 mysql u使用者名稱 p密碼 示例 2.登入遠端主機的mysql mysql h遠端主機ip位址 u使用者名稱 p密碼 示例 注 建立使用者命令格式為 create user hehe 192.168.93.151 3.退出mysql命令 exit 修改...

mysql常使用的命令

登入資料庫 mysql uroot p 會提示你輸入密碼 i 登入修改資料庫的密碼 i set password for root localhost password newpass i 用mysqladmin i mysqladmin u root password newpass 如果root...

mysql生效命令 mysql常使用的命令

mysql uroot p 會提示你輸入密碼 登入修改資料庫的密碼 set password for root localhost password newpass 用mysqladmin mysqladmin u root password newpass 如果root已經設定過密碼,採用如下方法...