Chinaunix首页 | 论坛 | 博客
  • 博客访问: 924715
  • 博文数量: 358
  • 博客积分: 8185
  • 博客等级: 中将
  • 技术积分: 3751
  • 用 户 组: 普通用户
  • 注册时间: 2008-10-15 16:27
个人简介

The views and opinions expressed all for my own,only for study and test, not reflect the views of Any Company and its affiliates.

文章分类

全部博文(358)

文章存档

2012年(8)

2011年(18)

2010年(50)

2009年(218)

2008年(64)

我的朋友

分类: Oracle

2009-07-09 18:15:03

文件: modified_store_schema.zip
大小: 6KB
下载: 下载
 
Chapter 2: Retrieving Information from Database Tables
 
■Pseudo column:
・ROWID
which is used internally by the Oracle database to store the physical location of the row. A rowid is an 18-digit number that is represented as a base-64 number.
・ROWNUM
■Table dual
dual table has one VARCHAR2 column named dummy and contains a single
row with the value X.
Using the LIKE Operator
You use the LIKE operator in a WHERE clause to search a string for a pattern. You specify patterns using a combination of normal characters and the following two wildcard characters:
Underscore (_) Matches one character in a specified position
Percent (%) Matches any number of characters beginning at the specified position
・'%\%%' ESCAPE '\'
NOT IN returns false if a value in the list is null
 
You can place the outer join operator on either side of the join operator, but you always place it on the opposite side of the column that contains the null value.
 
Chapter 3: Using SQL*Plus
 
SQL> help
 HELP
 ----
 Accesses this command line help system. Enter HELP INDEX for a list
 of topics.
 In iSQL*Plus, click the Help button to display iSQL*Plus help.
 HELP [topic]
SQL> help index
Enter Help [topic] for help.
 @             COPY         PAUSE                    SHUTDOWN
 @@            DEFINE       PRINT                    SPOOL
 /             DEL          PROMPT                   SQLPLUS
 ACCEPT        DESCRIBE     QUIT                     START
 APPEND        DISCONNECT   RECOVER                  STARTUP
 ARCHIVE LOG   EDIT         REMARK                   STORE
 ATTRIBUTE     EXECUTE      REPFOOTER                TIMING
 BREAK         EXIT         REPHEADER                TTITLE
 BTITLE        GET          RESERVED WORDS (SQL)     UNDEFINE
 CHANGE        HELP         RESERVED WORDS (PL/SQL)  VARIABLE
 CLEAR         HOST         RUN                      WHENEVER OSERROR
 COLUMN        INPUT        SAVE                     WHENEVER SQLERROR
 COMPUTE       LIST         SET
 CONNECT       PASSWORD     SHOW
 
Chapter 4: Using Simple Functions
 
阅读(418) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~