Cheat Sheet

SQL All-in-One

SQL is a popular and useful programming language. You can make SQL even more useful if you know the phases of SQL development, normal forms, the data types, how to filter tables with WHERE clauses, and a little about set and value functions.

Phases of SQL System Development

In developing any system, you start at the beginning and go through to the end, and it’s no different with SQL. The following list shows you what to consider at each phase of the SQL development lifecycle:

  • Definition Phase: Precisely define the problem to be solved, its magnitude, and who will work on it.

  • Requirements Phase: Develop a detailed description of exactly what the development effort will produce. Gather all relevant information and put it into a requirements document (Statement of Requirements). Get client signoff.

  • Evaluation Phase: Determine exactly how you will meet the requirements. What tools will you use? How will you deploy your development team? Determine whether the job is doable within time and budget constraints.

  • Design Phase: Create a database model and then design a database and database application that satisfy the terms of the requirements document.

  • Implementation Phase: Build the database and the database application. Include copious documentation within the code and in external documents.

  • Final Documentation and Testing Phase: Give the database and application a tough workout. Hit the system with every conceivable input condition and a few inconceivable ones. Try to overload it. See where it breaks. When it breaks, send it back to the implementers or even back to the designers. Document everything.

  • Maintenance Phase: Fix latent bugs as they arise. Provide updates and enhancements called for by the client.

SQL Criteria for Normal Forms

In SQL, normal forms are defining characteristics of relational databases. SQL forms get classified according to the types of modification anomalies they’re subject to. First, second, and third normal forms (1NF, 2NF, 3NF) serve as remedies to the three main sources of modification anomalies.

The normal forms are nested in the sense that a table that’s in 2NF is automatically also in 1NF. Similarly, a table in 3NF is automatically in 2NF, and so on. For most practical applications, putting a database in 3NF is sufficient to ensure a high degree of integrity. To be absolutely sure of its integrity, you must put the database into DK/NF.

The table here lays out the criteria for each form:

Criteria for SQL Normal Forms
First Normal Form (1NF)
Table must be two-dimensional, with rows and columns.
Each row contains data that pertains to one thing or one portion of a thing.
Each column contains data for a single attribute of the thing being described.
Each cell (intersection of row and column) of the table must be single-valued.
All entries in a column must be of the same kind.
Each column must have a unique name.
No two rows may be identical.
The order of the columns and of the rows does not matter.
Second Normal Form (2NF)
Table must be in first normal form (1NF).
All nonkey attributes (columns) must be dependent on all of the key.
Third Normal Form (3NF)
Table must be in second normal form (2NF).
Table has no transitive dependencies.
Domain-Key Normal Form (DK/NF)
Every constraint on the table is a logical consequence of the definition of keys and domains.

SQL Value Functions

You use SQL value expressions to combine two or more values. Several kinds of SQL value expressions exist, corresponding to the different data types; the following table lists string, numeric and datetime values, functions, and effects:

SQL Value Functions
String Value Functions Effect
SUBSTRING Extracts a substring from a source string
UPPER Converts a character string to all uppercase
LOWER Converts a character string to all lowercase
TRIM Trims off leading or trailing blanks
TRANSLATE Transforms a source string from one character set to another
CONVERT Transforms a source string from one character set to another
Numeric Value Functions Effect
POSITION Returns the starting position of a target string within a source string
CHARACTER_LENGTH Returns the number of characters in a string
OCTET_LENGTH Returns the number of octets (bytes) in a character string
EXTRACT Extracts a single field from a datetime or interval
Datetime Value Functions Effect
CURRENT_DATE Returns the current date
CURRENT_TIME(p) Returns the current time; (p) is precision of seconds
CURRENT_TIMESTAMP(p) Returns the current date and the current time; (p) is precision of seconds

SQL Set Functions

Sometimes, the information that you want to extract from an SQL table doesn’t relate to individual rows but rather to sets of rows. SQL provides five set (or aggregate) functions to deal with such situations — COUNT, MAX, MIN, SUM, and AVG. Each function performs an action that draws data from a set of rows rather than from a single row:

  • COUNT: Returns the number of rows in the specified table

  • MAX: Returns the maximum value that occurs in the specified table

  • MIN: Returns the minimum value that occurs in the specified table

  • SUM: Adds up the values in a specified column

  • AVG: Returns the average of all the values in the specified column

How to Filter SQL Tables with WHERE Clauses

The WHERE clause is a filter that passes rows that meet the search condition and rejects rows that don’t meet the condition. By including WHERE clauses in SELECT statements, you can restrict the rows that you place into the resulting table to those that satisfy specific conditions. The following table lists the predicates to use to filter for the information you want:

image0.jpg

SQL Data Types

Depending on their histories, different SQL implementations support a variety of data types. The SQL specification recognizes six predefined general types, shown in this table.

SQL Data Types
Exact Numerics Datetimes
INTEGER DATE
SMALLINT TIME
BIGINT TIMESTAMP
NUMERIC TIME WITH TIMEZONE
DECIMAL TIMESTAMP WITH TIMEZONE
Approximate Numerics Intervals
REAL INTERVAL DAY
DOUBLE PRECISION INTERVAL YEAR
FLOAT Large Objects
Boolean BLOB
BOOLEAN CLOB
Character Strings Collection Types
CHARACTER ARRAY
CHARACTER VARYING (VARCHAR) MULTISET
NATIONAL CHARACTER Other Types
NATIONAL CHARACTER VARYING ROW
XML

Comments (0)

Leave a Reply


Post Comment

Grab a free widget and we'll bring interesting & helpful tips to your favorite personal page each day

Sign Up for RSS Feeds

Computers & Software

Inside Dummies.com