Ingres® 2006 - SQL Reference Guide |
|||
|
ISBN : - |
Order a printed copy of this book from Amazon --UNAVAILABLE-- |
||
![]() Cover Design - Ingres® 2006 - SQL Reference Guide |
For your free electronic copy of this book please verify the numbers below. (We need to do this to make sure you're a person and not a malicious script) | ||
|
Sample Chapter From Ingres® 2006 - SQL Reference Guide Copyright © Ingres Corporation |
|||
Chapter 2: Introducing SQLThis chapter provides an overview of SQL, including an introduction to interactive and embedded SQL statements. This chapter also describes the features and extensions of SQL and the database management system (DBMS). SQL FunctionalitySQL statements enable you to:
Types of SQL StatementsSQL statements are categorized according to the task performed:Data Definition Language (DDL) Creates or deletes objects such as tables, indexes, and database procedures. Data Manipulation Language (DML) Allows data manipulation in tables. SQL ReleasesSQL statements come in two releases:Interactive SQL SQL statements are entered from a terminal and query results display on the terminal screen. Embedded SQL SQL statements can be included in programming languages such as C or Fortran. Interactive SQLInteractive SQL statements are entered through the Terminal Monitor.Line-Based Terminal MonitorsThe line-based Terminal Monitor accepts SQL statements in a line-oriented style. The line-based Terminal Monitor is invoked by typing sql at the operating system prompt.For a complete discussion of the line-based Terminal Monitor, see the appendix “Terminal Monitors.” The Help SQL statement displays information about SQL statements and about tables, views, and other database objects. A complete list of help options is provided in the chapter “Using SQL Statements.” Forms Based Terminal MonitorThe forms-based Terminal Monitor accepts SQL statements in a screenoriented style. The forms based Terminal Monitor is invoked by typing isql at the operating system prompt.Embedded SQLEmbedded SQL statements can be embedded in a procedural (3GL) programming language. The procedural language is referred to as the host language.
|
|||