MySQL常用操作

2022-09-16 22:48:16 字數 1277 閱讀 4981

mysql的常用命令行

建立新的使用者

create user 使用者名稱 identified by  『密碼』;

更改使用者密碼

set  password for 使用者名稱 =password『新密碼』;

清除已經輸入的語句:\c

檢視使用者:select user from mysql.user;

使用者許可權管理

檢視使用者許可權:show grants for name

建立使用者許可權: grant select,insert,update,delete  on 資料庫.* to 使用者名稱@localhost  identified by 『密碼』;也可以用此命令來建立使用者

刪除許可權:revoke select on 資料庫.* to 使用者名稱

資料庫操作

建立資料庫:create database 資料庫名稱;

檢視資料庫:show databases;

刪除資料庫:drop database 資料庫名稱;

連線資料庫:use 資料庫名稱;

資料庫表操作

檢視資料庫表:show tables;

建立表:

create table tb_name ( `id` int( 5 ) unsigned not null auto_increment , `username` varchar( 20 ) not null , `password` char( 32 ) not null , `time` datetime not null , `number` float( 10 ) not null , `content` text not null , primary key ( `id` ) ) engine = myisam ;

刪除表:drop table tbname;

顯示表的結構定義:describle tbname;

向表中新增內容:insert into tbname values《內容》 例如:insert into list values<「liwn」,「woman」 >;

顯示表中的內容:select * from tbname;

索引特定欄位的內容 select username,password from tbname;

刪除表中的內容:delete * from tbname;

刪除表中的指定資訊

delete from zhangyan where id = 1;

my sql常用操作

1.grant allprivilegeson tomonty localhost identified by something with grant option monty 可以從任何地方連線伺服器的乙個完全的超級使用者,但是必須使用乙個口令 something 做這個。注意,我們必須對 mo...

mysql 常用操作

1 修改表名在mysql中修改表名的sql語句在使用mysql時,經常遇到表名不符合規範或標準,但是表裡已經有大量的資料了,如何保留資料,只更改表名呢?alter table table name rename to new table name 例如alter table admin user r...

mysql常用操作

mysql常用操作 修改root密碼 用root 進入mysql後 mysql set password password 你的密碼 mysql flush privileges 檢視表結構 show create table 表名 清空表且令自增字段從1開始 truncate table 表名 檢...