oracle sql和sql server以及mysql的区别
oracle sql和sql server以及mysql的区别1.插入语句的区别例子insert into newtable (username,password)select 'aa','bb' union allselect 'aa','bb' union allselect 'aa','bb' union allselect 'aa','bb' 上面这段sql代码,可以在sql server以及mysql执行,在oracle sql就不能执行2.查询用别名例子select i.uname as username from user as u上面这段sql代码,可以在sql server以及mysql执行,在oracle sql也不能执行//总结 ?????