RelationalDBDesign
SiteMap
Advanced SQL
Essential SQL
Interview Questions
Table Querying
«Prev
Next»
SQL Introduction
Course Prerequisites
Select Statement
What is SQL
Sample SQL Statement
Client/Server Request
SQL 92 (History)
SQL Dialect Variations
Database Selection
Database Setup
MS-SQL Server
SQL Module Review
Relational Databases
Relational vs Flatfile
Different Storage Formats
Relational DB Analogy
Database Normalization
Data Table Example
Normalization Example Table
Table Normalization - Exercise
Three Normalization Levels
Relational Flatfile DB
SQL Columns Rows
SQL Foundations
Database Elements
Database Spreadsheets
Database Parts - Quiz
Table Structure SQL
Create Table
Databases Column Types
Table Index
Create Index Column
Database Index Engine
Database Foundations - Quiz
SQL Insert
SQL Select Statement
Selecting Information
Tables Rows Dsatabase
Querying XML
Table Querying
SQL Conclusion
INTO Statement
Order By Clause
SQL Into Statement
Filtering Select
Where Clause
Like Statement
into Statement
Sorting Data
Order by Clause
Sort Select
Ascending Descending Order
Select Statement
More SQL
Filtering Select Statement
Joining Tables
Join Where Clause
SQL Joins Explained
Where Clause Join
inner-outer-joins
left-right-full-joins
left-right-joins
SQL Union Operator
SQL Join Conclusion
SQL Delete Row - Exercise
The DELETE Statement
Objective:
Create a DELETE statement that removes one row from the database.
Use the figure below as the starting point for your table:
CustomerID
LastName
FirstName
Address 1
Address 2
City
State
ZipCode
Phone
1
Brennan
Caitlin
1604 N. West Street
Suite 304 D
Santa Clara
CA
99834-1223
444-515-1212
2
Anne
Julie
3561 E. Chef Overture
Tuscon
AZ
85700
444-515-1212
4
Steinberg
Mike
5481 SE Torque Blvd
San Antonio
TX
95700-3334
444-515-1212
5
Jose
Diaz
One Infinite Loop
Cupertino,
CA
95014
444-515-1212
3
Nahk
Tabinda
1234 S. Main Street
Seville
CA
23415-4432
444-515-1212
Create a DELETE statement that will remove the row containing the record for Tabinda Nahk.
When you are done, submit your statement .