热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Oracle11gSQLFundamentalsTrainingIntroduction02

RealationalDatabaseTerminology1-row;2-主键列;3-普通列;4-外键列;5-普通字段值;6-普通字段null值;UsingSQLto

Realational Database Terminology

1->row;2->主键列;3->普通列;4->外键列;5->普通字段值;6->普通字段null值;

Using SQL to Query Your Database

Structured  query language(SQL) is:

  • The ANSI standard languagte for operating relational database
  • Efficient,easy to learn,and use
  • Functionally complete(With SQL,you can define,retrieve,and manipulate data in the tables.)

SQL Statements

CommandDescribe
SELECTData manipulation language(DML)
INSERT
UPDATE
DELETE
MERGE
 
CREATEData definition language(DDL)
ALTER
DROP
RENAME
TRUNCATE
COMMENT
 
GRANTData control language(DCL)
REVOKE
 
COMMITTransaction control
ROLLBACK
SAVEPOINT

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Development Enviroments for SQL

In this course:

  • Oracel SQL Developer(不推荐)
  • Primarily use SQL*PLUS

The Human Resources(HR) Schema

Oracle Database 11g Documentatioin

  • Oracle Database New Features Guide 11g,Release 2
  • Oracle Database Reference 11g,Realease 2
  • Oracle Database SQL Lanaguage 11g,Release 2
  • Oracle Database Concepts 11g,Release 2

Summary

  • Relational databases are composed of realtions,managed by relational operations,and governed by data integrity constraints.
  • With the Oracle server,you can store and manage information by using SQL.

 

 

 

 

转:https://www.cnblogs.com/arcer/archive/2013/04/13/3018768.html



推荐阅读
author-avatar
mobiledu2502857827
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有