Skip to content

Instantly share code, notes, and snippets.

@jweden
Created December 29, 2011 02:57
Show Gist options
  • Save jweden/1531420 to your computer and use it in GitHub Desktop.
Save jweden/1531420 to your computer and use it in GitHub Desktop.
SQL in database
CREATE TABLE customer
(First_Name char(50),
Last_Name char(50),
Address char(50),
City char(50),
Country char(25),
Birth_Date date)
insert into customer values (jason,weden,4 Mow Lane, Albany, NY, 12-2-1972)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment