Oracle基本操作

1、普通用户登录:
方式一:
	C:\Users\Administrator>sqlplus scott/scott(用户名/密码)

	SQL*Plus: Release 11.2.0.1.0 Production on 星期五 8月 11 21:53:53 2017

	Copyright (c) 1982, 2010, Oracle.  All rights reserved.


	连接到:
	Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
	With the Partitioning, OLAP, Data Mining and Real Application Testing options
方式二:
	C:\Users\Administrator>sqlplus scott/scott

	SQL*Plus: Release 11.2.0.1.0 Production on 星期五 8月 11 21:53:53 2017

	Copyright (c) 1982, 2010, Oracle.  All rights reserved.


	连接到:
	Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
	With the Partitioning, OLAP, Data Mining and Real Application Testing options
2、超级用户登录
	C:\Users\Administrator>sqlplus /nolog

	SQL*Plus: Release 11.2.0.1.0 Production on 星期五 8月 11 22:18:04 2017

	Copyright (c) 1982, 2010, Oracle.  All rights reserved.

	SQL> connect /as sysdba
	已连接。
3、退出登录
	SQL> quit
	从 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
	With the Partitioning, OLAP, Data Mining and Real Application Testing options 断开
4、查看当前用户下的所有表
	SQL> select * from tab;

	TNAME                          TABTYPE  CLUSTERID
	------------------------------ ------- ----------
	BONUS                          TABLE
	DEPT                           TABLE
	EMP                            TABLE
	SALGRADE                       TABLE
5、查询表的所有记录
	SQL> select * from dept;

	    DEPTNO DNAME          LOC
	---------- -------------- -------------
	        10 ACCOUNTING     NEW YORK
	        20 RESEARCH       DALLAS
	        30 SALES          CHICAGO
	        40 OPERATIONS     BOSTON
6、查看表结构
	SQL> desc dept;
	 名称                                      是否为空? 类型
	 ----------------------------------------- -------- ----------------------------
	 DEPTNO                                    NOT NULL NUMBER(2)
	 DNAME                                              VARCHAR2(14)
	 LOC
7、设置行宽
	SQL> set linesize 150;
8、设置页大小
	SQL> set pagesize 120;
9、设置列宽
	SQL> col deptno for 99999999;
10、清屏
	SQL> host cls;
11、修改SQL语句
	SQL> edit;


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值