摘要:
-- pinyin 返回整个汉字字符串所有首字母 BEGIN DECLARE V_COMPARE VARCHAR(255); DECLARE V_RETURN VARCHAR(255); DECLARE I INT; SET I = 1; SET V_RETURN = ''; while I < L 阅读全文
摘要:
SELECT * FROM V$ACCESS O WHERE O.TYPE LIKE 'PROCEDURE%' 创建物化视图且定时刷新create materialized view mv_name refresh force on demand start with sysdate next sy 阅读全文
摘要:
1、已经配置本地服务 create public database link link_nameconnect to username identified by passwordusing 'connect_string';注:link_name是连接名字,可以自定义;username是登陆数据库 阅读全文
摘要:
AS OF TIMESTAMP SYSDATE - 1AS OF TIMESTAMP TO_TIMESTAMP('2016-06-22 12:30:00','YYYY-MM-DD HH24:MI:SS')CREATE TABLE [TABLENAME] AS SELECT * FROM (SELEC 阅读全文
摘要:
查看CHROME密码:chrome//settings/passwords 点开保存密码的网站审查元素 LINUX版本: cat /proc/version当前版本及使用系统名称 gcc version 4.8.5 20150623 (Red Hat 4.8.5-11) (GCC) Linux ve 阅读全文
摘要:
SQL server 0.7、2000driver="com.microsoft.jdbc.sqlserver.SQLServerDviver"url="jdbc:microsoft:sqlserver://localhost:1433;DatebaseName=数据库名称"url="jdbc:mi... 阅读全文
摘要:
select * from employees;select * from employees where salary = 10000;select *from employeeswhere first_name like 'D%' or first_name like 'E%';se... 阅读全文