select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:
数据库 时间:
2021-06-28 18:48:46
阅读次数:
0
--公司注册 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
1、在查询中根据A字段关联另一个表,并用另一个表A字段对应的另一个字段替换本表中A字段的值。 virtualid表,两列label, number;virtualid_zd表,两列name, number,怎么在查询 ...
分类:
数据库 时间:
2021-06-28 18:26:05
阅读次数:
0
1 、在 macOS 的 App Store 下载 Apple Configurator 2,打开后 连接 iPhone/iPad 2 、点击 Apple Configurator 2 中的 iPhone,右键选择 添加 - app 3 、找到想要的 app,选择然后点 添加,就会自动开始下载 4 ...
分类:
微信 时间:
2021-06-28 17:57:55
阅读次数:
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
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
字符串字面量 字符串字面量是指在表达式、条件语句、SQL函数,SQL语句中字符串的表示。一般情况下字符串是从一个单引号开始到一个单引号结束,但存在一些特殊情况,比如字符串本身含有单引号,这会让数据库误以为应该结束字符串而导致错误,或含有一些其他特殊字符。下面简单介绍Oracle数据库中字符串字面量如 ...
分类:
数据库 时间:
2021-06-25 17:10:34
阅读次数:
0
1、首先创建中间表 IMPORT_TABLE CREATE TABLE IMPORT_TABLE(INT1 VARCHAR2(10),VAR2 VARCHAR2(10),DATE3 VARCHAR2(10),NUMBER4 VARCHAR2(10)); 2、创建bat执行文件(bat_exe.bat ...
分类:
数据库 时间:
2021-06-25 16:37:24
阅读次数:
0
The NuGet package sources are configured through Visual Studio, but they're stored in a per-user configuration file, found at c:\Users\$USER\AppData\R ...
分类:
其他好文 时间:
2021-06-24 18:32:12
阅读次数:
0
1.在线添加日志组成员 SQL> alter database drop logfile member '/u01/app/oracle/oradata/orcl/redo01a.log'; Database altered. SQL> alter database add logfile memb ...
分类:
数据库 时间:
2021-06-24 18:26:14
阅读次数:
0