Created
February 2, 2015 15:02
-
-
Save vanderhoop/d6160ae39091523abd23 to your computer and use it in GitHub Desktop.
Revisions
-
vanderhoop revised this gist
Feb 2, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,5 +10,5 @@ You just learned how to insert (create) records into a table, and how to select 1. Insert a student into the `students` table. - Type the command from scratch (no copy and pasting). 2. Validate that the student appeared by selecting (reading) the records in the students table. - As before, type the command from scratch. 3. Repeat steps 1 & 2 until you have 6 students in the students table. -
vanderhoop created this gist
Feb 2, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ ## CREATING and READING in PSQL You just learned how to insert (create) records into a table, and how to select (read) records using structured query language. Because these skills are so fundamental, you have been tasked with adding #### Exercise Objective - build muscle memory for creating and reading records in SQL #### Directions 1. Insert a student into the `students` table. - Type the command from scratch (no copy and pasting). 2. Validate that the student appeared by selecting (reading) the records in the students table. - Again, type the command from scratch. 3. Repeat steps 1 & 2 until you have 6 students in the students table.