mysql常用語句

2021-09-28 18:56:50 字數 573 閱讀 6847

建立資料庫

create

database ***

配置使用者並配置許可權

grant

allon db.*to

'user'@'%

' identified by 'passwd'

修改密碼校驗規則

set

global validate_password_policy=0;

setglobal validate_password_length=

1;

修改使用者可以遠端訪問

grant

allprivileges

on`xx_%`.

*to'root'@'%

' identified by '

123456' with

grant

option

;

修改資料庫表大小寫不敏感

修改my.cnf在mysqld下新增lower_case_table_names = 1

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常用語句

and和or可以混用,and比or具有更高的優先順序,但盡量使用圓括號區分 自動過濾重複的資料owner,關鍵字distinct select distinct owner from pet 按照生日公升序排列,關鍵字order by select name,birth from pet order...