进入scott账号, 先看看emp表的数据: 执行如下语句: select sum(comm),count(*),avg(comm) from emp; 执行结果如下: 原始表中有14条数据,结果看见avg(comm)只对非NULL的数据进行平均操作,那是因为oracle的组函数不会将null的数据 ...
分类:
数据库 时间:
2021-06-04 19:21:22
阅读次数:
0
[20210428]改进pr.sql脚本.txt--//tanel poder提供一个脚本pr.sql,用来实现显示信息的纵向显示。例子:SCOTT@book> select * from dept where deptno=10 2 @ prPivoting output using Tom Ky ...
分类:
数据库 时间:
2021-04-29 11:47:01
阅读次数:
0
解锁用户 SQL> alter user scott identified by tiger account unlock; 用户已更改。 切换用户 SQL> conn scott/tiger 已连接。 查看当前用户 SQL> show user USER 为 "SCOTT" 查看所有表 SQL> ...
分类:
其他好文 时间:
2021-04-20 14:12:18
阅读次数:
0
[20210401]跟踪sqlplus登录执行了什么.txt--//昨天做了测试,链接http://blog.itpub.net/267265/viewspace-2765851/,顺便记录一下登录过程执行了什么。1.环境:SCOTT@book> @ ver1PORT_STRING VERSION ...
分类:
数据库 时间:
2021-04-01 13:37:37
阅读次数:
0
1. 导出: SQL> exp \'sys/oracle@erp as sysdba \' owner=SCOTT file=/u01/app/oracle/backup/exp_scott.dmp log=/u01/app/oracle/backup/exp_scott.log; 导出SCOTT用 ...
分类:
其他好文 时间:
2021-01-21 10:50:05
阅读次数:
0
oracle命令导出/导入 ? 今天有感于很喜欢很喜欢很喜欢的一个女孩子的启发,oracle导入导出这一块的问题,被问倒了,气氛尴尬,一定要拿个小本本记录一下。 导出步骤: 1:打开cmd命令框,在页面上输入exp,会出现图1; 2:输入用户名,即已经存在的用户名,如scott等,如图2,可能会出现 ...
分类:
数据库 时间:
2020-11-12 13:37:20
阅读次数:
12
oracle中3个默认用户 sys change_on_install [as sysdba] system manager scott tiger一、创建用户及修改密码 create user lisi identified by lisi; alter user lisi identified ...
分类:
数据库 时间:
2020-11-02 09:58:31
阅读次数:
29
sql练习 创建表: 复制代码 DROP TABLE DEPT; --部门表 CREATE TABLE DEPT( DEPTNO int PRIMARY KEY, DNAME VARCHAR(14) , --部门名称 LOC VARCHAR(13) 部门地址 ) ; CREATE TABLE DEP ...
分类:
数据库 时间:
2020-10-14 20:05:20
阅读次数:
37
什么是位置参数?你一定很熟悉位置参数,即使你第一次听到这个名字。functiongreet(firstName,lastName){console.log(`Hello${firstName}${lastName}`);}//预期用法greet(‘Michael‘,‘Scott‘);constfName=‘Harry‘;constlName=‘Potter‘;greet(fName,lName);
分类:
编程语言 时间:
2020-08-28 14:37:21
阅读次数:
49
一.用户授权 1)普通权限 grant ${autoType1, autoType2, autoType3, ...} to ${userName} identified by ${password}; 例1: grant connect, resource to scott identified ...
分类:
数据库 时间:
2020-08-13 12:24:41
阅读次数:
188