数据库-基础命令

数据库基本-命令

#查看所有逻辑数据库

[root@localhost ~]# show databases;

#创建数据库t1

[root@localhost ~]# create database t1;

#删除库t1

[root@localhost ~]# drop database t1;

#使用数据库

[root@localhost ~]# use t1;

#建表并添加两个字段

[root@localhost ~]# create table test(age tinyint, number int);  #(字段 数据类型)

#添加字段

[root@localhost ~]# alter table t1 add math int;

#条件查询

[root@localhost ~]# select id,name from employee5 where id<=3; 

#去重sex

[root@localhost ~]# select distinct sex from employee5;

#数据库授权(指定来源用户及ip地址)

[root@localhost ~]# grant all on 数据库. to ‘用户’@'客户端来源IP地址' identified by‘密码’

#查询数据库下所有用户及权限

[root@localhost ~]# select * from mysql.user;

#查询数据库的用户及权限

[root@localhost ~]# select * from mysql.db  where user='用户'\G

#查询数据库中表的用户及权限

[root@localhost ~]# select * from mysql.tables_priv where user='用户'\G

#刷新数据库

[root@localhost ~]# FLUSH PRIVILEGES;  
补充:通配符  
           ?匹配单个字符
           * 匹配任意长度的任意字符

欢迎大家参考交流!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

自由如风才是少年的梦

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值