以下的文章主要是对mysql 数据库,我们大家在实际的操作过程中会涉及到很多的关于mysql数据库的一些基础性的技巧知识的运行,以下就有其详细内容的介绍。 创建用户: createuser'laobao'@'localhost'identifiedby'laobao123'; grantallprivileges on*.* to'l
以下的文章主要是对mysql 数据库,我们大家在实际的操作过程中会涉及到很多的关于mysql数据库的一些基础性的技巧知识的运行,以下就有其详细内容的介绍。
创建用户:
create user 'laobao'@'localhost' identified by 'laobao123'; grant all privileges on *.* to 'laobao'@'localhost' with grant option
连接mysql数据库命令: mysql -u root -p tennis
insert into table test values(null);
索引:
create index penalties_amount on penalties(amount);
通过在关键字create和index之间加上一个关键字unique,可以创建一个唯一索引。
视图:
create view number_sets (matchno, difference) as select matchno, abs(won-lost) from matches; grant select,update on teams to laobao2 drop table matches; drop view number_sets; drop index penalties_amount; drop database tennis; select @@version set @@sql_mode = 'pipes_as_concat' set @@sql_mode = concat(@@sql_mode, case @@sql_mode when '' then '' else ',' end, 'no_zero_in_date')
mysql数据库有两个数据库,其中包含了目录表。名为mysql的数据库包含了有关权限、用户和表的数据。这些表的结构是隐秘的而且是mysql所独有的。另外,名为information_schema的数据库包含了目录数据,其中和mysql数据库中的数据有部分的重合。information_schema的结构符合sql标准并且看上去和其他sql产品的结构相似。
给列指定的假名可以用在作为一个select语句块的一部分的大多数其他字句中,除了from和where子句之外。 新列名不能用在同一条select语句中。因此,select won as w, w*2是不允许的。
select @creditsum:=sum(credit) from artype;
以上的相关内容就是对mysql 数据库随记的介绍,望你能有所收获。