MySql常用語句更新(update )

2022-06-16 21:54:18 字數 1718 閱讀 8256

【其他相關】

# 重新整理

flush privileges;

# 檢視活動程序

show processlist

# 檢視mysql版本資訊

select version();

【許可權相關】

# 授權並建賬號

grant all privileges on demo.* to 'demo'@'x.x.x.x' identified by '123456';

# **許可權

revoke all on *.* from 'root'@'%';

【建立相關】

# create db

create database if not exists demo default character set = 'utf8';

#建立資料庫

create_db_sql="create database if not exists $"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ -e "《執行的sql語句》"

#建立表

create_table_sql="create table if not exists $ ( name varchar(20), id int(11) default 0 )"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "$《執行的sql語句》"

#插入資料

insert_sql="insert into $ values('billchen',2)"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

【查詢相關】

# view db grant

show create database demo;

# 檢視mysql 執行程序列表

show processlist;

#查詢是否鎖表

show open tables where in_use > 0;

# view user&grant information

select user,password,host from mysql.user;

#查詢select_sql="select * from $"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

#更新資料

update_sql="update $ set id=3"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

【刪除相關】

delete from mysql.user where user='root' and host = '%';

#刪除資料

delete_sql="delete from $"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

mysql -h《資料庫ip> -p《資料庫埠》 -u《使用者名稱》-p$ $ -e "《執行的sql語句》"

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

php mysql 常用語句 mysql常用語句

一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...

總結MySQL常用語句(持續更新)

一 基礎記錄資料 常數列的最大值 select max article as article from shop 獲取某列最大值的行 select from shop where price select max article from shop 按組排列的最大值 select article,m...