数据查询语言(凡是带有 select 关键字的都是查询语句)
select...
数据 *** 作语言(凡是对表中的 数据 进行增删改的都是 DML)
insert 增 delete 删 update 改
数据定义语言(凡是带有 create、drop、alter 的都是 DDL)
主要 *** 作的是 表的结构 ,不是表的数据
事务控制语言(包括:事务提交 commit、事务回滚 rollback)
数据控制语言(授权 grant、撤销权限 revoke)
select 字段 from 表名 where 条件
in(具体值,具体值,......) 不是区间
一个输入对应一个输出,和其对应的是多行处理函数(多个输入,对应一个输出)
输入多行,最终输出一行
如果你 没有对数据进行分组,整张表默认为一组 。
在实际的应用中,可能需要先进行分组,然后对每一组的数据进行 *** 作
案例: 查询每个员工所在部门的名称,显示员工名和部门名?
emp e 和 dept d 表进行连接。条件是:e.deptno = d.deptno
SQL92语法:(结构不够清晰,表的连接条件和后期进一步筛选的条件,都放到了 where 子句中)
SQL99语法:(表连接的条件是独立的,连接之后,如果还需要进一步筛选,再往后继续添加 where 子句)
技巧: 把一张表看成两张表
思考: 外连接的查询结果条数 >= 内连接的查询结果条数
select 语句中 嵌套 select 语句,被嵌套的 select 语句称为 子查询。
将查询结果集的一部分取出来。(通常使用在分页查询当中)
将字符串 varchar 类型转换成 date 类型
将日期转换成字符串
可以获取当前系统的时间,并且获取的时间是 datetime 类型的
注意:若没有条件限制将会导致所有数据全部更新。
注意:若没有条件,会删除整张表的数据。
constraint
not null 约束的字段 不能为 NULL (只有列级约束)
unique 约束的字段 不能重复 ,但是可以为 NULL
primary key
foreign key
transaction
实现原理 :缩小扫描的范围(形成树),避免全表扫描
Database Administrator 数据库管理员
数据库表的设计依据。教你怎么进行数据库表的设计。
免费领取有关于java面试题材料和讲解!
1. MySQL支持enum,和set类型,SQL Server不支持2. MySQL不支持nchar,nvarchar,ntext类型
3. MySQL的递增语句是AUTO_INCREMENT,而MS SQL是identity(1,1)
4. MS SQL默认到处表创建语句的默认值表示是((0)),而在MySQL里面是不允许带两括号的
5. MySQL需要为表指定存储类型
6. MS SQL识别符是[],[type]表示他区别于关键字,但是MySQL却是 `,也就是按键1左边的那个符号
7. MS SQL支持getdate()方法获取当前时间日期,但是MySQL里面可以分日期类型和时间类型,获取当前日期是current_date (),当前完整时间是 now()函数
8. MS SQL不支持replace into 语句,但是在最新的sql20008里面,也支持merge语法
9. MySQL支持insert into table1 set t1 = „‟, t2 = „‟ ,但是MS SQL不支持这样写
10. MySQL支持insert into tabl1 values (1,1), (1,1), (1,1), (1,1), (1,1), (1,1), (1,1)
11. MySQL在创建表时要为每个表指定一个存储引擎类型,而MS SQL只支持一种存储引擎
12. MySQL不支持默认值为当前时间的datetime类型(MS SQL很容易做到),在MySQL里面 是用timestamp类型
13. MS SQL里面检查是否有这个表再删除,需要这样:if exists (select * from dbo.sysobjects where id = object_id(N'uc_newpm') and OBJECTPROPERTY(id,N'IsUserTable')=1) 但是在MySQL里面只需要 DROP TABLE IF EXISTS cdb_forums
14. MySQL支持无符号型的整数,那么比不支持无符号型的MS SQL就能多出一倍的最大数 存储
15. MySQL不支持在MS SQL里面使用非常方便的varchar(max)类型,这个类型在MS SQL里 面既可做一般数据存储,也可以做blob数据存储
16. MySQL创建非聚集索引只需要在创建表的时候指定为key就行,比如:KEY displayorder (fid,displayorder) 在MS SQL里面必须要:create unique nonclustered index index_uc_protectedmembers_username_appid on dbo.uc_protectedmembers (username asc,appid asc)
17. MySQL text字段类型不允许有默认值
18. MySQL的一个表的总共字段长度不超过65XXX。
19. 一个很表面的区别就是MySQL的安装特别简单,而且文件大小才110M(非安装版),相 比微软这个庞然大物,安装进度来说简直就是.....
20. MySQL的存储过程只是出现在最新的版本中,稳定性和性能可能不如MS SQL。
21. 同样的负载压力,MySQL要消耗更少的CPU和内存,MS SQL的确是很耗资源。
22. mysql的ifnull()函数对应sql的isnull()函数
23. mysql的存储过程中变量的定义去掉@
24. mysql的每句结束要用""
25. SQLServer存储过程的AS在MySql中需要用begin .....end替换
26. 字符串连接用concat()函数如 SQLServer: Temp=‟select * from ‟+‟tablename‟+…+… MySql:Temp=concat(‟select * from‟, ‟tablecname‟,…,…)
27. mysql的uuid()对应mssql的GUID()
28. MySql的out对应SQLServer的output,且mysql 的out要放在变量的前面,SQLServer 的output放在变量后面
29. MySql out,in,inout的区别——MySQL 存储过程 “in” 参数:跟 C 语言的函数参 数的值传递类似, MySQL 存储过程内部可能会修改此参数,但对 in 类型参数的修改,对调用者(caller)来说是不可见的(not visible)。MySQL 存储过程 “out” 参数:从存储过程内部传值给调用者。在存储过程内部,该参数初始值为 null,无论调用者是否给存储过程参数设置值。MySQL 存储过程 inout 参数跟 out 类似,都可以从存储过程内部传值给调用者。不同的是:调用者还可以通过 inout 参数传递值给存储过程。
30. MySQL的if语句为 if (条件) then end if或者 If (条件) then Else End if 或者 If(条件)then Elseif (注意不能写成 Else if ) Elseif … End if
31. Mysql的Execute对应SqlServer的exec (注意:必须想下面这样调用) Set @cnt=‟select * from 表名‟ Prepare str from @cnt Execute str
32. MySql存储过程调用其他存储过程用call Call 函数名(即SQLServer的存储过程名)(‟参数1‟,‟参数2‟,……)
33. mysql的日期
1) 获得当前日期函数:curdate(),current_date()
2) 获得当前时间函数:curtime()
3) 获得当前日期+时间:now()
4) MySQL dayof... 函数:dayofweek(), dayofmonth(), dayofyear()分别返回日期参 数,在一周、一月、一年中的位置。
5) (注:周日=1,周一=2,周二=3,……)
6) 返回本月的天数:select day(last_day(now()))
7) MySQL 为日期增加一个时间间隔:date_add()
8) select date_add(CURRENT_DATE(),interval „要增加的天数‟ day) as Fdate
9) MySQL 为日期减去一个时间间隔:date_sub()
10) select date_sub('1998-01-01 00:00:00', interval '1 1:1:1' day_second)
11) MySQL 日期、时间相减函数:datediff(date1,date2), timediff(time1,time2)
12) MySQL 拼凑日期、时间函数:makdedate(year,dayofyear), maketime(hour,minute,second)
13) 例:select makedate(2001,31)-- '2001-01-31'
14) select makedate(2001,32)-- '2001-02-01'
15) 本周时间(起始)
16) select date_sub(CURRENT_DATE(),interval dayofweek(curdate())-2 day) as Fdate
17) 本周时间(结束)
18) select date_add(CURRENT_DATE(),interval dayofweek(curdate())+3 day) as Fdate
19) 上周时间(起始)
20) select date_sub(CURRENT_DATE(),interval dayofweek(curdate())+5 day) as Fdate
21) 上周时间(结束)
22) select date_sub(CURRENT_DATE(),interval dayofweek(curdate())-1 day) as Fdate
23) 本月时间(起始)
24) select DATE_SUB(CURDATE(),INTERVAL DAY(CURDATE())-1 DAY) as Fdate
25) 本月时间(结束)
26) Select date_add(current_date(),interval day(last_day(CURDATE())) -day(CURDATE()) day) as Fdate
27) 上月时间(起始)
28) select DATE_SUB(DATE_SUB(CURDATE(),INTERVAL DAY(CURDATE()) DAY),interval day(last_day(DATE_SUB(CURDATE(),INTERVAL DAY(CURDATE()) DAY)))- 1 day) as Fdate
29) 上月时间(结束)
30) select DATE_SUB(CURDATE(),INTERVAL DAY(CURDATE()) DAY) as Fdate
31) 今年时间(起始)
32) select makedate(year(curdate()),1) as FDate
33) 今年时间(结束)
34) select DATE_SUB(makedate(year(curdate())+1,1) ,INTERVAL 1 day) as Fdate
35) 去年时间(起始)
36) select makedate(year(curdate())-1,1) as Fdate
37) 去年时间(结束)
38) select DATE_SUB(makedate(year(curdate()),1) ,INTERVAL 1 day) as FDate
39) DATE_FORMAT(date,format):根据format字符串格式化date值。下列修饰符 可以被用在format字符串中
40) %M 月名字(January……December) %W 星期名字(Sunday……Saturday) %D 有英语前缀的月份的日期(1st, 2nd, 3rd, 等等。) %Y 年, 数字, 4 位 %y 年, 数字, 2 位 %a 缩写的星期名字(Sun……Sat) %d 月份中的天数, 数字(00……31) %e 月份中的天数, 数字(0……31) %m 月, 数字(01……12) %c 月, 数字(1……12) %b 缩写的月份名字(Jan……Dec) %j 一年中的天数(001……366) %H 小时(00……23) %k 小时(0……23) %h 小时(01……12) %I 小时(01……12) %l 小时(1……12) %i 分钟, 数字(00……59) %r 时间,12 小时(hh:mm:ss [AP]M) %T 时间,24 小时(hh:mm:ss) %S 秒(00……59) %s 秒(00……59) %p AM或PM
41) %w 一个星期中的天数(0=Sunday ……6=Saturday ) %U 星期(0……52), 这里星期天是星期的第一天 %u 星期(0……52), 这里星期一是星期的第一天 %% 一个文字“%”。
42) 例:所有的其他字符不做解释被复制到结果中。 mysql> select DATE_FORMAT('1997-10-04 22:23:00', '%W %M %Y') ->'Saturday October 1997' mysql>select DATE_FORMAT('1997-10-04 22:23:00', '%H:%i:%s')
43) -> '22:23:00'
44) mysql>select DATE_FORMAT('1997-10-04 22:23:00', '%D %y %a %d %m %b %j')
45) ->'4th 97 Sat 04 10 Oct 277'
46) mysql>select DATE_FORMAT('1997-10-04 22:23:00', '%H %k %I %r %T %S %w')
47) ->'22 22 10 10:23:00 PM 22:23:00 00 6'
34. MySql存储过程中没有return函数,在MySql中可以用循环和out参数代替 If EXISTS(SELECT * FROM T_Chance WHERE FCustID=CostomerID) return 0 改写为: (在参数中定义一个out变量:out temp varchar(100)) BEGIN Loop1:loop SELECT count(*) FROM T_Chance WHERE FCustID=CostomerID int @cnt If @cnt>0 then begin set temp=0 leave loop1 endend if end loop loop1
35. (13) select @a=count(*) from VW_Action 在mySql中修改为:select count(*) from VW_Action into @a
36. (14)MySQL中没有top关键字,需要用limit代替且放在后面 注意,在MySQL中的limit不能放在子查询内,limit不同与SQLServer,它可 以规定范围 limit a,b——范围a-b SQL SERVER : select top 8 * from table1 MYSQL: select * from table1 limit 5
37. (15)即使存储过程没有参数也要写括号“()”
38. (16) 当一个存储过程中有创建临时表时 create procedure up_test () begin drop table if exists tb1 create TEMPORARY table tb1//注意添加TEMPORARY table ( id int, name varchar(20) )//注意最后加分号 insert tb1 values('1','jim')select * from tb1end
39. (17)建表中自增长问题: create table user ( Id varchar(10) primary key auto_increment not null, Name varchar(20) not null, Password varchar(20), create_date datetime ) auto_increment 自增长
40. (18) "Unable to convert MySQL date/time value to System.DateTime"这是因为在日期 列中有"0000-00-00"数据值,要修正这个问题,你可以把这些数据设为null,或者在连接字符串中设置"Allow Zero Datetime=True" 。 41. (19) MySQL视图的FROM子句不允许存在子查询,因此对于SQL Server中FROM 子句带有子查询的视图,需要手工进行迁移。可通过消除FROM子句中的子查询,或将FROM子句中的子查询重构为一个新的视图来进行迁移。
本文实例,运行于MySQL5.0及以上版本。
MySQL
赋予用户权限命令的简单格式可概括为:
grant
权限on
数据库对象to
用户
一、grant
普通数据用户,查询、插入、更新、删除数据库中所有表数据的权利。
grant
select
on
testdb.*
to
common_user@'%'
grant
insert
on
testdb.*
to
common_user@'%'
grant
update
on
testdb.*
to
common_user@'%'
grant
delete
on
testdb.*
to
common_user@'%'
或者,用一条MySQL
命令来替代:
grant
select,
insert,
update,
delete
on
testdb.*
to
common_user@'%'
二、grant
数据库开发人员,创建表、索引、视图、存储过程、函数。。。等权限。
grant
创建、修改、删除MySQL
数据表结构权限。
grant
create
on
testdb.*
to
developer@'192.168.0.%'
grant
alter
on
testdb.*
to
developer@'192.168.0.%'
grant
drop
on
testdb.*
to
developer@'192.168.0.%'
grant
*** 作MySQL
外键权限。
grant
references
on
testdb.*
to
developer@'192.168.0.%'
grant
*** 作MySQL
临时表权限。
grant
create
temporary
tables
on
testdb.*
to
developer@'192.168.0.%'
grant
*** 作MySQL
索引权限。
grant
index
on
testdb.*
to
developer@'192.168.0.%'
grant
*** 作MySQL
视图、查看视图源代码权限。
grant
create
view
on
testdb.*
to
developer@'192.168.0.%'
grant
show
view
on
testdb.*
to
developer@'192.168.0.%'
grant
*** 作MySQL
存储过程、函数权限。
grant
create
routine
on
testdb.*
to
developer@'192.168.0.%'
--
now,
can
show
procedure
status
grant
alter
routine
on
testdb.*
to
developer@'192.168.0.%'
--
now,
you
can
drop
a
procedure
grant
execute
on
testdb.*
to
developer@'192.168.0.%'
三、grant
普通DBA
管理某个MySQL
数据库的权限。
grant
all
privileges
on
testdb
to
dba@'localhost'
其中,关键字“privileges”
可以省略。
四、grant
高级DBA
管理MySQL
中所有数据库的权限。
grant
all
on
*.*
to
dba@'localhost'
五、MySQLgrant
权限,分别可以作用在多个层次上。
1.
grant
作用在整个MySQL
服务器上:
grant
select
on
*.*
to
dba@localhost
--
dba
可以查询MySQL
中所有数据库中的表。
grant
all
on
*.*
to
dba@localhost
--
dba
可以管理MySQL
中的所有数据库
2.
grant
作用在单个数据库上:
grant
select
on
testdb.*
to
dba@localhost
--
dba
可以查询testdb
中的表。
3.
grant
作用在单个数据表上:
grant
select,
insert,
update,
delete
on
testdb.orders
to
dba@localhost
4.
grant
作用在表中的列上:
grant
select(id,
se,
rank)
on
testdb.apache_log
to
dba@localhost
5.
grant
作用在存储过程、函数上:
grant
execute
on
procedure
testdb.pr_add
to
'dba'@'localhost'
grant
execute
on
function
testdb.fn_add
to
'dba'@'localhost'
六、查看MySQL
用户权限
查看当前用户(自己)权限:
show
grants
查看其他MySQL
用户权限:
show
grants
for
dba@localhost
七、撤销已经赋予给MySQL
用户权限的权限。
revoke
跟grant
的语法差不多,只需要把关键字“to”
换成“from”
即可:
grant
all
on
*.*
to
dba@localhost
revoke
all
on
*.*
from
dba@localhost
八、MySQLgrant、revoke
用户权限注意事项
1.
grant,
revoke
用户权限后,该用户只有重新连接MySQL
数据库,权限才能生效。
2.
如果想让授权的用户,也可以将这些权限grant
给其他用户,需要选项“grant
option“
grant
select
on
testdb.*
to
dba@localhost
with
grant
option
这个特性一般用不到。实际中,数据库权限最好由DBA
来统一管理。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)