标签:local 情况下 evo 表连接 col abs limit 新建用户 sql脚本
语法格式
新建数据库testdb create datebase testdb;
新建用户 laowang 并赋予 testdb数据库相应的权限 grant all privileges on testdb.* to laowang@localhost identified by ‘123‘;
如果想指定部分的权限给用户 grant select, update on testdb.* to laowang@localhost identified by ‘123‘;
赋予用户 laowang 所有数据库的某些权限 grant select, update, insert, create, drop on . to laowang@"%" identified by ‘123‘;
注意:all privileges, ., "%"(所有的登陆主机)
常用的权限 select 对所有表进行查询操作 insert 对所有表进行插入操作 update 对所有表进行更新操作 delete 对所有表进行删除操作 create 数据库、表、索引 drop 数据库和表的删除操作 alter 对所有表进行更改
普通索引(最基本的索引)
语法格式:create index index_name on table_name(column)
create table index_tb1(
id int primary key auto_increment,
name varchar(32)
);
create index index_name on index_tb1(name);
格式:alter table table_name add index index_name(column);
唯一索引
主键索引
注意:使用整型优于字符型,额外维护一个与其他字段不相关的列,一般设置为整数类型并且自增长。
语法格式:
注意
标签:local 情况下 evo 表连接 col abs limit 新建用户 sql脚本
原文地址:https://www.cnblogs.com/coding8832/p/14410780.html