Writing Basic SQL SELECT Statements. Objectives

Similar documents
Retrieving Data Using the SQL SELECT Statement. Copyright 2006, Oracle. All rights reserved.

Information and Computer Science Department ICS 324 Database Systems Lab#11 SQL-Basic Query

Chapter 1. Writing Basic. SQL Statements

Oracle Database 10g: Introduction to SQL

Oracle Database: SQL and PL/SQL Fundamentals

Oracle SQL. Course Summary. Duration. Objectives

3.GETTING STARTED WITH ORACLE8i

SQL - QUICK GUIDE. Allows users to access data in relational database management systems.

Oracle Database 12c: Introduction to SQL Ed 1.1

Oracle Database: SQL and PL/SQL Fundamentals

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

Appendix A Practices and Solutions

Displaying Data from Multiple Tables

Oracle Database: SQL and PL/SQL Fundamentals NEW

SQL and Data. Learning to Retrieve Data Efficiently and Accurately

Producing Readable Output with SQL*Plus

Oracle Database 10g Express

GET DATA FROM MULTIPLE TABLES QUESTIONS

History of SQL. Relational Database Languages. Tuple relational calculus ALPHA (Codd, 1970s) QUEL (based on ALPHA) Datalog (rule-based, like PROLOG)

A basic create statement for a simple student table would look like the following.

Oracle Database: Introduction to SQL

Chapter 9 Joining Data from Multiple Tables. Oracle 10g: SQL

CHAPTER 12. SQL Joins. Exam Objectives

Advanced Query for Query Developers

Oracle Database: SQL and PL/SQL Fundamentals NEW

Writing Control Structures

Displaying Data from Multiple Tables. Copyright 2006, Oracle. All rights reserved.

Where? Originating Table Employees Departments

Database Query 1: SQL Basics

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25)

Microsoft Access 3: Understanding and Creating Queries

Oracle Database: Introduction to SQL

SQL Introduction Chapter 7, sections 1 & 4. Introduction to SQL. Introduction to SQL. Introduction to SQL

Oracle Database: Introduction to SQL

Handling Exceptions. Copyright 2006, Oracle. All rights reserved. Oracle Database 10g: PL/SQL Fundamentals 8-1

Recognizing PL/SQL Lexical Units. Copyright 2007, Oracle. All rights reserved.

9.1 SAS. SQL Query Window. User s Guide

MOC 20461C: Querying Microsoft SQL Server. Course Overview

SQL SELECT Query: Intermediate

DBF Chapter. Note to UNIX and OS/390 Users. Import/Export Facility CHAPTER 7

Performing Queries Using PROC SQL (1)

Oracle Database 11g SQL

Database Programming with PL/SQL: Learning Objectives

Microsoft Access Lesson 5: Structured Query Language (SQL)

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt

Netezza SQL Class Outline

Using AND in a Query: Step 1: Open Query Design

ICAB4136B Use structured query language to create database structures and manipulate data

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

Create a New Database in Access 2010

Displaying Data from Multiple Tables. Copyright 2004, Oracle. All rights reserved.

MySQL for Beginners Ed 3

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:

Now that we have discussed some PHP background

Programming with SQL

Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved.

Oracle 10g PL/SQL Training

Introduction to Microsoft Jet SQL

Consulting. Personal Attention, Expert Assistance

REPORT GENERATION USING SQL*PLUS COMMANDS

Using SQL Queries in Crystal Reports

Resources You can find more resources for Sync & Save at our support site:

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer.

Creating PL/SQL Blocks. Copyright 2007, Oracle. All rights reserved.

Oracle Internal & Oracle Academy

JavaScript: Introduction to Scripting Pearson Education, Inc. All rights reserved.

Lab # 5. Retreiving Data from Multiple Tables. Eng. Alaa O Shama

Teach Yourself InterBase

Access Queries (Office 2003)

ATTACHMENT 6 SQL Server 2012 Programming Standards

Multimedia im Netz Online Multimedia Winter semester 2015/16

Handling Exceptions. Copyright 2008, Oracle. All rights reserved.

KB_SQL SQL Reference Guide Version 4

Guide to Performance and Tuning: Query Performance and Sampled Selectivity

SQL Server Database Coding Standards and Guidelines

SQL. Short introduction

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer.

Advance DBMS. Structured Query Language (SQL)

SaaS Data Architecture. An Oracle White Paper Oct 2008

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Ad Hoc Advanced Table of Contents

SQL Server An Overview

T-SQL STANDARD ELEMENTS

SQL Injection. The ability to inject SQL commands into the database engine through an existing application

VBScript Database Tutorial Part 1

Chapter 2: Elements of Java

Database 10g Edition: All possible 10g features, either bundled or available at additional cost.

A table is a collection of related data entries and it consists of columns and rows.

2874CD1EssentialSQL.qxd 6/25/01 3:06 PM Page 1 Essential SQL Copyright 2001 SYBEX, Inc., Alameda, CA

Instant SQL Programming

ACCELL/SQL: Creating Reports with RPT Report Writer

Handling Missing Values in the SQL Procedure

Concepts Design Basics Command-line MySQL Security Loophole

Qlik REST Connector Installation and User Guide

Using Multiple Operations. Implementing Table Operations Using Structured Query Language (SQL)

White Paper. Blindfolded SQL Injection

Data Integrator. Pervasive Software, Inc B Riata Trace Parkway Austin, Texas USA

Transcription:

1 Writing Basic SQL SELECT Statements Copyright Oracle Corporation, 2001. All rights reserved. Objectives After completing this lesson, you should be able to do the following: List the capabilities of SQL SELECT statements Execute a basic SELECT statement Differentiate between SQL statements and isql*plus commands 1-2 Copyright Oracle Corporation, 2001. All rights reserved.

Capabilities of SQL SELECT Statements Projection Selection Table 1 Table 1 Join Table 1 Table 2 1-3 Copyright Oracle Corporation, 2001. All rights reserved. Basic SELECT Statement SELECT FROM * {[DISTINCT] column expression [alias],...} table; SELECT identifies what columns FROM identifies which table 1-4 Copyright Oracle Corporation, 2001. All rights reserved.

Selecting All Columns SELECT * FROM departments; 1-5 Copyright Oracle Corporation, 2001. All rights reserved. Selecting Specific Columns SELECT department_id, location_id FROM departments; 1-6 Copyright Oracle Corporation, 2001. All rights reserved.

Writing SQL Statements SQL statements are not case sensitive. SQL statements can be on one or more lines. Keywords cannot be abbreviated or split across lines. Clauses are usually placed on separate lines. Indents are used to enhance readability. 1-7 Copyright Oracle Corporation, 2001. All rights reserved. Column Heading Defaults isql*plus: Default heading justification: Center Default heading display: Uppercase SQL*Plus: Character and Date column headings are leftjustified Number column headings are right-justified Default heading display: Uppercase 1-8 Copyright Oracle Corporation, 2001. All rights reserved.

Arithmetic Expressions Create expressions with number and date data by using arithmetic operators. Operator + - * / Description Add Subtract Multiply Divide 1-9 Copyright Oracle Corporation, 2001. All rights reserved. Using Arithmetic Operators SELECT last_name, salary, salary + 300 1-10 Copyright Oracle Corporation, 2001. All rights reserved.

Operator Precedence * / + _ Multiplication and division take priority over addition and subtraction. Operators of the same priority are evaluated from left to right. Parentheses are used to force prioritized evaluation and to clarify statements. 1-11 Copyright Oracle Corporation, 2001. All rights reserved. Operator Precedence SELECT last_name, salary, 12*salary+100 1-12 Copyright Oracle Corporation, 2001. All rights reserved.

Using Parentheses SELECT last_name, salary, 12*(salary+100) 1-13 Copyright Oracle Corporation, 2001. All rights reserved. Defining a Null Value A null is a value that is unavailable, unassigned, unknown, or inapplicable. A null is not the same as zero or a blank space. SELECT last_name, job_id, salary, commission_pct 1-14 Copyright Oracle Corporation, 2001. All rights reserved.

Null Values in Arithmetic Expressions Arithmetic expressions containing a null value evaluate to null. SELECT last_name, 12*salary*commission_pct 1-15 Copyright Oracle Corporation, 2001. All rights reserved. Defining a Column Alias A column alias: Renames a column heading Is useful with calculations Immediately follows the column name - there can also be the optional AS keyword between the column name and alias Requires double quotation marks if it contains spaces or special characters or is case sensitive 1-16 Copyright Oracle Corporation, 2001. All rights reserved.

Using Column Aliases SELECT last_name AS name, commission_pct comm SELECT last_name "Name", salary*12 "Annual Salary" 1-17 Copyright Oracle Corporation, 2001. All rights reserved. Concatenation Operator A concatenation operator: Concatenates columns or character strings to other columns Is represented by two vertical bars ( ) Creates a resultant column that is a character expression 1-18 Copyright Oracle Corporation, 2001. All rights reserved.

Using the Concatenation Operator SELECT FROM last_name job_id AS "Employees" employees; 1-19 Copyright Oracle Corporation, 2001. All rights reserved. Literal Character Strings A literal is a character, a number, or a date included in the SELECT list. Date and character literal values must be enclosed within single quotation marks. Each character string is output once for each row returned. 1-20 Copyright Oracle Corporation, 2001. All rights reserved.

Using Literal Character Strings SELECT last_name ' is a ' job_id AS "Employee Details" 1-21 Copyright Oracle Corporation, 2001. All rights reserved. Duplicate Rows The default display of queries is all rows, including duplicate rows. SELECT department_id 1-22 Copyright Oracle Corporation, 2001. All rights reserved.

Eliminating Duplicate Rows Eliminate duplicate rows by using the DISTINCT keyword in the SELECT clause. SELECT DISTINCT department_id 1-23 Copyright Oracle Corporation, 2001. All rights reserved. SQL and isql*plus Interaction isql*plus Internet Browser SQL statements Oracle server isql*plus commands Query results Formatted report Client 1-24 Copyright Oracle Corporation, 2001. All rights reserved.

SQL Statements Versus isql*plus Commands SQL A language ANSI standard Keyword cannot be abbreviated Statements manipulate data and table definitions in the database isql*plus An environment Oracle proprietary Keywords can be abbreviated Commands do not allow manipulation of values in the database Runs on a browser Centrally loaded, does not have to be implemented on each machine SQL statements isql*plus commands 1-25 Copyright Oracle Corporation, 2001. All rights reserved. Overview of isql*plus After you log into isql*plus, you can: Describe the table structure Edit your SQL statement Execute SQL from isql*plus Save SQL statements to files and append SQL statements to files Execute statements stored in saved files Load commands from a text file into the isql*plus Edit window 1-26 Copyright Oracle Corporation, 2001. All rights reserved.

Logging In to isql*plus From your Windows browser environment: 1-27 Copyright Oracle Corporation, 2001. All rights reserved. The isql*plus Environment 10 8 9 6 1 2 3 4 5 1-28 Copyright Oracle Corporation, 2001. All rights reserved.

Displaying Table Structure Use the isql*plus DESCRIBE command to display the structure of a table. DESC[RIBE] tablename 1-29 Copyright Oracle Corporation, 2001. All rights reserved. Displaying Table Structure DESCRIBE employees 1-30 Copyright Oracle Corporation, 2001. All rights reserved.

Interacting with Script Files SELECT last_name, hire_date, salary 1 2 1-31 Copyright Oracle Corporation, 2001. All rights reserved. Interacting with Script Files 1 D:\temp\emp_sql.htm SELECT last_name, hire_date, salary 3 1-32 Copyright Oracle Corporation, 2001. All rights reserved.

Interacting with Script Files DESCRIBE employees SELECT first_name, last_name, job_id 1 3 2 1-33 Copyright Oracle Corporation, 2001. All rights reserved. Summary In this lesson, you should have learned how to: Write a SELECT statement that: Returns all rows and columns from a table Returns specified columns from a table Uses column aliases to give descriptive column headings Use the isql*plus environment to write, save, and execute SQL statements and isql*plus commands. SELECT FROM * {[DISTINCT] column expression [alias],...} table; 1-34 Copyright Oracle Corporation, 2001. All rights reserved.

Practice 1 Overview This practice covers the following topics: Selecting all data from different tables Describing the structure of tables Performing arithmetic calculations and specifying column names Using isql*plus 1-35 Copyright Oracle Corporation, 2001. All rights reserved.