--公司注册 if exists(select * from Sysobjects where name='usp_CompanyRegister') drop procedure usp_CompanyRegister; go create procedure usp_CompanyRegiste ...
分类:
其他好文 时间:
2021-06-28 18:47:19
阅读次数:
0
--创建无数据但表结构相同的表 create table ASRS_TASKDETAIL_LV_HISTORY as select * from ASRS_TASKDETAIL_LV where 1=0 --如果要复制相应的数据就改where条件,这个语句复制了源表的字段数量、顺序、类型、是否可为空 ...
分类:
数据库 时间:
2021-06-28 18:34:36
阅读次数:
0
1、在查询中根据A字段关联另一个表,并用另一个表A字段对应的另一个字段替换本表中A字段的值。 virtualid表,两列label, number;virtualid_zd表,两列name, number,怎么在查询 ...
分类:
数据库 时间:
2021-06-28 18:26:05
阅读次数:
0
select t.type,t.name 表名 from sysobjects t where t.type in ('U','v' ,'TR') and t.name like '%%';select t.type,t.name 表名,f.name 列名 from sysobjects t, sy ...
分类:
数据库 时间:
2021-06-28 18:13:06
阅读次数:
0
SELECT A.WBXSDDH,A.XSDDLX,B.XSFDH,B.XSZZDM,C.SKUID FROM GMXSDD A,GMXSDDFD B,GMXSDDSP C WHERE A.XSDDH=B.XSDDH AND B.XSFDH=C.XSFDH AND B.XSFDLX=0 AND B. ...
分类:
数据库 时间:
2021-06-28 17:36:49
阅读次数:
0
1.去官网下载安装包http://www.oracle.com/technetwork/topics/winx64soft-089540.html 2.1instantclient-basic-windows.x64-19.11.0.0.0.zip 2.2instantclient-sqlplus- ...
分类:
数据库 时间:
2021-06-25 17:25:38
阅读次数:
0
public class ResList { public int ID { get; set; } public List<ResList> Child { get; set; } = null; public int Parent { get; set; } public int Rank { ...
分类:
其他好文 时间:
2021-06-25 17:23:59
阅读次数:
0
1. 当前连接会话数以及当前并发连接个数 -- 当前活跃用户会话数Select count(*) from v$session where status='ACTIVE' and USERNAME is not null;-- 当前活跃系统会话数Select count(*) from v$sess ...
分类:
数据库 时间:
2021-06-25 17:21:32
阅读次数:
0
How to quickly check installed software versions Posted on March 31, 2020by Adam the 32-bit Aardvark There are situations where you need to check whet ...
分类:
其他好文 时间:
2021-06-25 17:10:48
阅读次数:
0
字符串字面量 字符串字面量是指在表达式、条件语句、SQL函数,SQL语句中字符串的表示。一般情况下字符串是从一个单引号开始到一个单引号结束,但存在一些特殊情况,比如字符串本身含有单引号,这会让数据库误以为应该结束字符串而导致错误,或含有一些其他特殊字符。下面简单介绍Oracle数据库中字符串字面量如 ...
分类:
数据库 时间:
2021-06-25 17:10:34
阅读次数:
0