Mediascripting on the Web (CSC 195 2014F) : Outlines

Outline 13: SQL


Held: Thursday, 1 May 2014

Back to Outline 12 - Relational Databases. On to Outline 14 - Wrapup.

Summary

We consider a bit of the basics of SQL.

Related Pages

Overview

Administrivia

Reminder: Basic Database Operations

Queries

Updates

Design Project, Revisited

SQL Queries

Selection

    SELECT _fields_ 
    FROM _tables_ 
    WHERE _criteria_ 
    ORDER BY _field_;

Insertion

    INSERT INTO table_name (column1,column2,column3,...)
    VALUES (value1,value2,value3,...);

Deletion

    DELETE FROM table_name
    WHERE _crieria_;

Copyright (c) 2014 Samuel A. Rebelsky.

Creative Commons License

This work is licensed under a Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.