INSERT INTO "Student" ("Knowledge") VALUES ('SQL')
Every application uses data in some way. In many of our applications, we will be storing information in a database. In this assignment, we will be practicing using SQL databases.
Objectives
- Create a database
- Write some queries to use the database
Setup
- Fork this repository to your own account.
- Change into your project's directory.
- Clone your repository:
hub clone sql-intro - Change into your newly cloned project's directory:
cd sql-intro code .- All your SQL queries should be placed inside the
queries.sqlfile.
Additional Resources
- Quick Reference to Helpful Postgres Commands
- Quick Reference to Navigating in pgcli
- Quick Reference to Common SQL Queries
- pgcli/psql CheatSheet
- PostgreSQL Data Types
- Hint for a useful data type
- PostgreSQL Documentation
Explorer Mode
Create a database:
CompanyDatabase.Create a table:
Employeeswith the following columns. Use your best judgment for data types. Copy the query you used to create this table and paste it intoqueries.sql.FullNameSalaryJobPositionPhoneExtensionIsPartTime
Create a few employees. Review the requirements below to see some examples of the values you may need. For instance, you may need employees of certain job positions, employees with certain names, etc. Add enough data (maybe 10 rows) such that you can validate your queries. Copy the queries you used to create your data into
queries.sqlCreate queries that can do the following. Each query should be attempted in your database. When it works, copy the query to
queries.sql. You may optionally copy and paste the query output to your queries.sql if you wish.- Select all columns for all employees.
- Select only the full names and phone extensions for only full-time employees.
- Insert a new part-time employee, as a software developer, with a salary of 450. Make up values for the other columns.
- Update all employees that are cooks to have a salary of 500.
- Delete all employees that have the full name of "Lazy Larry".
- Add a column to the table:
ParkingSpotas textual information that can store up to 10 characters.
Adventure Mode
- Add queries to
queries.sqlthat show how to:- Recreate your database and tables and use
NOT NULLfor columns you feel are required. - Add a primary key named
Idto your table.
- Recreate your database and tables and use
Epic Mode
- Add queries to
queries.sqlthat show how to:- Create a second table:
Departmentsthat has these columns:NameBuildingNumber
- Create a column on the
Employeestable namedDepartmentIdto relate to theDepartmentstable. Make it a foreign key. - Insert employees and related departments.
- Create a second table: