首页 > SQL Server 与 ORACLE 的区别

SQL Server 与 ORACLE 的区别

sql server 与  oracle的区别:    DBMS 数据库管理系统

1.数据类型不同。   sql server 的数据类型:int ,smallint ,char,varchar,nchar,nvarchar,ntext,datetime,smalldatetime,money,decima,   float,bit……    oracle 的数据类型:number(p,s),char,varchar2,Date,LOB 注意:insert into table_name values('1','张三','男',date'2012-3-5'); -插入字符串日期前加date转换类型  

2.获得当前系统时间的函数不同。   sql server :getdate() oracle:sysdate 例如:设定日期格式的函数:to_char(sysdate,'yyy-mm-dd');

3.在oracle中没有默认约束的说法   sql server 中添加默认约束:alter table talbe_name add DF_table_name default('男') for sex; oracle 中添加默认值:alter table table_name modify(sex default('男'));

4.连接变量和字符串的方式不一样   sql server 中连接:使用“+”连接,例如:print  'aaaa'+@name; oracle  中连接:使用“||”连接,例如:dbms_output.put_line('aaa'||name); -name为变量

5.oracle没有identity自动增长列,而是使用序列实现增长   sql server 自动增长:在表的主键列中可直接使用identity(1,1)实现增长 oracle 使用序列自动增长:create sequence se_id start with 1increment by 1   使用序列实现自动增长:se_id.nextval

6.条件语句if……else……的语法不同   sql server中: if 条件 begin  ………… end else begin   ………… end    oracle中: if 条件1 then …………; elsif 条件2 then …………; else   …………; end if;

7.case语句的语法不同   sql server中: select ....case.....(else)....end....语句 select stuno '学号',case when grade>=90 and grade<=100 then '★★★★' when grade>=80 and grade<90 then '★★★' when grade>=70 and grade<80 then '★★' when grade>=60 and grade<70  then '★' else '差' end as '等级' from score go   oracle中: declare nums number:=&nos; &nos表示提示传入值 begin   case nums  when 100 then    dbms_output.put_line('满分也,不错');  when 90 then    dbms_output.put_line('90分页很不错了');  end case; end;

8.触发器创建语法不同  sql server中:   首先判断触发器是否已经存在 if exists (select * from sys.sysobjects where name='tr_delete') 如果存在先删除 drop trigger tr_delete go   创建触发器create trigger tr_deleteon bookInfoinstead of deleteas 定义变量 declare @bookid int  select @bookid=Bookid from deleted -deleted执行删除语句( delete from BookInfo where BookId=1),自动生成的deleted表 删除与该图书的相关记录(先删除从表再删除主表) delete from borrowinfo where  bookid=@bookid delete from backinfo where  bookid=@bookid delete from BookInfo where BookId=@bookid 判断 if @@error<>0 begin  print '删除失败'  rollback transaction end else begin  print '删除成功' endgodelete from BookInfo where BookId=1 oracle中: 创建触发器create or replace trigger tri_testbefore insert or update or delete on table_name[for each row] -如果要使用 :new /:old 就必须使用行触发器declare  nums varchar2(20);begin  select 'F'||lpad('aa',5,0) into  nums from dual;end;    9.oracle中的存储过程 sql server中存储过程:  判断存储过程是否已经存在 if exists(select * from sys.sysobjects where name='proc_name')  如果存在先删除  drop proc proc_name go  创建存储过程语句 create proc/procedure proc_name @参数名1 数据类型 [out/output], @参数名2 数据类型 [out/output] as    ………… go  调用存储过程 如果有输出参数,则需定义变量(假设@参数2为输出参数) declare @变量名 数据类型 exec proc_name @参数名1='aaa',@参数名2=@变量名 out   -oracle中带游标及循环的存储过程   create or replace procedure proc_selCurrent  ( names varchar2  )  as cursor cursor_sel is select DepositSum,cardType,name,state from CurrentAccount where name like '%'||names||'%'; dd number; cc number; nn varchar2(20); sta number; beginopen cursor_sel;  loop    fetch cursor_sel into dd,cc,nn,sta;    dbms_output.put_line('存款金额:'||dd||'姓名:'||nn);  exit when cursor_sel%notfound;  end loop;close cursor_sel; end; 调用存储过程   begin  proc_selCurrent('a');   end;

10.创建用户的方式不同    sql server中 1、创建登陆账号:sa 123456   create Login 登陆名称 with password='登陆密码'   修改登陆账户:   alter Login 登陆名称 with name='新登录名称' and password='新登录密码' 禁用/启用登陆账号   alter Login 登录名称 disable(禁用)/enable(启用) 删除登陆账号   drop Login 登录名称   2、创建用户: create user 用户名 for/from Login 登陆名称  修改用户名 alter user 用户名 with name='新用户名'  删除用户名 drop user 用户名  -授权限 grant select/update/delete/insert on 表名 to 用户名 -oracle中: -创建用户语法:    create user 用户名     identified by 密码     default tablespace users     temporary tablespace temp     quota 10M on users    修改密码:    alter user 用户名 identified by 新密码   授予权限:    grant create session to 用户名   删除用户    drop user 用户名 cascade;   自己总结的一点,仅供参考

  作者:落幕年代 来源:CSDN 原文:https://blog.csdn.net/lailai186/article/details/45267959?utm_source=copy 版权声明:本文为博主原创文章,转载请附上博文链接!

转载于:https://www.cnblogs.com/bocom-zx/p/9783315.html

更多相关:

  • 引言 在这个-SLAM建图和导航仿真实例-项目中,主要分为三个部分,分别是 (一)模型构建(二)根据已知地图进行定位和导航(三)使用RTAB-MAP进行建图和导航 该项目的slam_bot已经上传我的Github。 这是第三部分,完成效果如下 图1 建图和导航 三、使用RTAB-Map进行建图和导航 1. rtab...

  • 引言 在这个-SLAM建图和导航仿真实例-项目中,主要分为三个部分,分别是 (一)模型构建(二)根据已知地图进行定位和导航(三)使用RTAB-MAP进行建图和导航 该项目的slam_bot已经上传我的Github。 由于之前的虚拟机性能限制,我在这个项目中使用了新的ubantu 16.04环境,虚拟机配置 内存 8GCPU...

  • [{name:1},{name:2}].forEach((v,i,ar) => {console.log(v,i,ar)});//基础遍历[{name:1},{name:2}].map((v) => v.name);//[1,2]返回对象数组中指定字段值的一位数组(不改变原始数组)[{name:1},{name:2},{name:3}...

  • 体验内容 使用gmapping方法利用turtlebot底盘移动信息和激光雷达数据进行建图。 1. 安装一些依赖包 sudo apt-get install ros-melodic-move-base* sudo apt-get install ros-melodic-map-server* sudo apt-get insta...

  • 前言 我们知道Java/Python这种语言能够很好得 支持反射。反射机制 就是一种用户输入的字符串到对应实现方法的映射,比如http接口中 用户传入了url,我们需要调用该url对应的方法/函数对象 从而做出对应的操作。 而C++ 并没有友好得支持这样的操作,而最近工作中需要通过C++实现http接口,这个过程想要代码实现得优雅...

  • 数据分析过程中,我们经常可以看到提数的SQL语句,了解SQL常用的基础查询语句,是检验提数逻辑是否正确的途径之一,并且也能更方便使用SMART BI数据分析工具。今天就让小编带大家走进SQL基础查询的世界吧~1、查询单个字段:语法:SELECT 字段名 FROM 表名举例:SELECT first_name FROM employ...

  •   SELECT * FROM tableSELECT * FROM table WHERE name = '强哥'SELECT * FROM table ORDER BY updateTime DESC...

  • 使用 OpenRowSet 和 OpenDataSource 访问 Excel 97-2007 测试文件:D:97-2003.xls和D:2007.xlsx,两个文件的内容是一模一样的。 测试环境:SQL Server 2000 / 2005。 -------------------------------------------...

  • exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure SELECT * INTO tmp_asset FROM OPENROWSET('Microsof...

  • select b.*,(select count(a.id) from td_product a where a.protypeid=b.id) num from td_protype b 转载于:https://www.cnblogs.com/shanlin/archive/2011/09/27/2192725.html...

  • CFAbsoluteTime start = CFAbsoluteTimeGetCurrent(); //在这写入要计算时间的代码 // do something CFAbsoluteTime end = CFAbsoluteTimeGetCurrent(); NSLog(@"%f", end - start); 转载于:ht...

  • Given a sorted integer array without duplicates, return the summary of its ranges. For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"]. 代码要求对数组中的元素进行分段。 首先给...

  • Hello,此BAT脚本能够帮助开发者将某目录下全部SQL脚本按文件名称依次在指定数据库中批量执行。不用忍受powershell invoke-sqlcmd 的笨重。在指执行时多一种选择。 bat文件 @echo off @REM ******** ******** General Batch for Starting SQL...

  • Description 设有一个n×m(小于100)的方格(如图所示),在方格中去掉某些点,方格中的数字代表距离(为小于100的数,如果为0表示去掉的点),试找出一条从A(左上角)到B(右下角)的路径,经过的距离和为最小(此时称为最小代价),从A出发的方向只能向右,或者向下。 Sample Input 4 4 4 10 7 0...

  • 有些Windows聚焦图片确实很漂亮,很希望保留下来,但是Windows聚焦图片总更好,网上有得到聚焦图片的方法,每次都手动去弄真麻烦,于是自己编了一个小程序,自动得到Windows聚焦图片,下面是运行这个小程序得到Windows聚焦图片的效果! 小工具以及源码下载:http://download.csdn.net/detail/su...