mysqladmin -u用户名 -p’旧密码’ password ‘新密码’
修改用户密码
create database 数据库名
创建数据库
show database
查询数据库
use 数据库名
进入数据库
drop database 数据库名
删除数据库
create table 表名(字段1 字段类型[,字段2 字段类型 ,…..])
创建表
Show tables
查询所有表
insert into 表名 values (数据1[,数据2,……])
插入数据
select [字段名1,字段名2,….] from 表名
查询表
drop table 表名
删除表
desc 表名
查询表结构
insert into 表名 values 数据
插入表数据
update 表 set 字段=值 where 条件
更新表数据
delete from 表 where 条件
删除表数据
Select * from 表名 where between 条件1 and 条件2
查询在条件一和条件二之间的值 包括条件一和条件二
Select * from 表名 where in (条件1 ,条件2 ,条件3)
查询满足一种条件的值
Select * from 表名 where in null
查询空值
Select * from 表名 where like ‘a%’
匹配满足条件的值 (% _)
Select * from 表名 where 条件 order by 字段 desc/asc [limit 值]
查询满足条件的值,并按升序/降序输出 [输出前几行]
create user 用户名@localhost identified by ‘密码’
创建用户
drop user 用户名@localhost
删除用户
grant select(id),insert(name,age) on 库名.表名 to 用户名@localhost identified by ‘密码’ with grant option
grant select(id),insert(name,age) on 库名.* to 用户名@% identified by ‘密码’ with grant option
grant select,updata on . to 用户名@192.168.1.% identified by ‘密码’ with grant option
grant all on 库名.表名 to 用户名@192.168.1.128 identified by ‘密码’ with grant option
分配指定表指定权限给指定用户,且指定登陆方式,并且确认该用户是否拥有授权其他用户的能力
最后编辑:admin 更新时间:2024-06-07 13:02