oracle sql和sql server以及mysql的区别

oracle sql和sql server以及mysql的区别
1.插入语句的区别
例子
insert into newtable (username,password)
select 'aa','bb' union all
select 'aa','bb' union  all
select 'aa','bb' union  all
select 'aa','bb' 
上面这段sql代码,可以在sql server以及mysql执行,在oracle sql就不能执行

2.查询用别名
例子
select i.uname as username from user as  u
上面这段sql代码,可以在sql server以及mysql执行,在oracle sql也不能执行

//总结 ????
 

猜你喜欢

转载自javaeedevelop.iteye.com/blog/1343658