异常的语法格式 在begin语句内: exception when then when then when others then --异常处理 --首先创建一份对象的用法 create type xtype as object (name varchar2(20)); declare x xtype; begin x.name:aaa; exception when ACCESS_INTO_NULL then dbms_…
PHP的time()得到的时间与当前时间相差很多,检查了PHP.ini,发现是时区不对。在PHP.ini中,当前设置为: [Date]; Defines the default timezone used by the date functions; http://php.net/date.timezonedate.timezone Europe/Par…
union的作用很简单用来合并两条sql的结果集语法: SQL1 UNION SQL2现有一张价格表要求:求出价格低于2000和价格高于3000的商品,不能用or和not between……and思路:我们可以先求出低于2000的商品得到结果集1再求出高于3000的商品得到结果集2再利…