摘要:
当用户在 HTML 表单 (HTML Form) 中输入信息并提交之后,有两种方法将信息从浏览器传送到 Web 服务器 (Web Server)。一种方法是通过 URL,另外一种是在 HTTP Request 的 body 中。前一种方法,我们使用 HTML Form 中的 method = "ge... 阅读全文
摘要:
先看简单创建语句:create materialized view mv_materialized_test refresh force on demand start with sysdate nextto_date(concat(to_char( sysdate+1,'dd-mm-yyyy'),... 阅读全文
摘要:
create or replace procedure pr_test1 isv_case number(3):= 100;begin if 2>1 then dbms_output.put_line('成立');elsif 4>3 then if 7>6 then dbms_out... 阅读全文