摘要:
function ChangeDateFormat(time) { if (time != null) { var date = new Date(parseInt(time.replace("/Date(", "").replace(")/", ""), 10)); var month = dat 阅读全文
摘要:
有一个表名为tb,字段段名为name,数据类型nchar(20)。 1、假设字段数据为空,则不管改为什么字段类型,可以直接执行: alter table tb modify (name nvarchar2(20)); 2、假设字段有数据,则改为nvarchar2(20)可以直接执行: alter t 阅读全文
摘要:
create or replace PROCEDURE Pro_fdn_costuser (v_BZBM in tb_if_archives.BZBM%type,v_BZMC in tb_if_archives.BZMC%type,v_CJBM in tb_if_archives.CJBM%type 阅读全文
摘要:
declare v_cnt number; V_SQL VARCHAR2 (500) := '';begin select count(*) into v_cnt from dual where exists(SELECT * FROM USER_TAB_COLUMNS WHERE TABLE_NA 阅读全文