这个**是什么意思啊

解决方案 »

  1.   

    lz说的2**32在C#是表示2的32次方,在Oracle里面2的32次方用power(2,32),2**32在Oracle里面没有这样的表示方式啊
      

  2.   

    测试脚本:-- Created on 2011/10/29 by ZHOUYJ 
    declare 
      -- Local variables here
      i int:=2;
    begin
      i:=2**32;
      dbms_output.put_line(i);
      
    end;
    DBMS输出为:       
    4294967296     这个**仅在plsql块内才起作用;直接在sqlplus中会报错!
      

  3.   

    在oracle9i中是有这种表示方式的,2**32 表示的是2的32次方