CSE 414 Homework 1: SQLITE
- Objectives:
- To be able to create and manipulate tables in sqlite3.
- Assignment tools:
- SQLite 3
- Due date:
- Wednesday, April 8 by 11:00pm. Turn in your solution using the assignment drop box linked from the main course web page.
- What to turn in:
- A file containing all of your SQL and SQLite commands, and SQL comments for your responses that are not in SQL. No need to include any inputs nor outputs.
Motivation: We will use SQLite for this assignment. SQLite is a software library that implements a SQL database engine. We will use SQLite in this assignment because it offers an extremely lightweight method to create and analyze structured datasets (by structured we mean datasets in the form of tables rather than, say, free text). Using SQLite is a minimal hassle approach to realizing the benefits of a relational database management system. Of course, SQLite does not do everything, but we will get to that point in later assignments. In the meantime, you can also check a page that describes when to use SQLite and when not to use it.
Extra Resources :
Assignment Details:
To run SQLite do the following:
- on Mac OS X or Linux, open a terminal and type sqlite3
- on Windows, there are two reasonable options:
- Install the stand-alone windows program from the sqlite web site (precompiled windows command-line shell on the download page), or (mabye a bit more complicated):
- Install cygwin to get a linux command shell, then open cygwin and type sqlite3 (you may have to install it by running setup --> database --> sqlite3; it is probably already installed in the CSE labs).
(see how easy it is to get started!)
- [25 points] First, create a simple table using the following steps:
- Create a table R(A,B) where both A and B are integers.
- Insert the tuples (2,4), (1,1), (3,2)
- Write a SQL statement that returns all tuples
- Now insert the tuple ('5','2'). Do you get an error? Why?
- Write a SQL statement that returns only column A for all tuples
- Write a SQL statement that returns all tuples where A<=B
For the next question you will be asked to create tables with
attributes of types integer, varchar, date, and Boolean. However, SQL
Lite does not have date and Boolean: you will use varchar and int
instead:
- 0 (false) and 1 (true) are the values used to interpret Booleans.
- Date strings in SQLite are in the form: 'YYYY-MM-DD'.
- Examples of valid date strings include: '1988-01-15', '0000-12-31', and '2011-03-28'.
- Examples of invalid date strings include: '11-11-01', '1900-1-20', '2011-03-5', and '2011-03-50'.
- Examples of date operations on date strings (try them):
select date('2011-03-28');
select date('now');
select date('now', '-5 year');
select date('now', '-5 year', '+24 hour');
select case when date('now') < date('2011-12-09') then 'Taking classes' when date('now') < date('2011-12-16') then 'Exams' else 'Vacation' end;
- [10 points] Create a table called MyRestaurants with the following attributes:
- Name of the restaurant: a varchar field
- Type of food they make: a varchar field
- Distance (in minutes) from your house: an integer
- Date of your last visit: a varchar field, interpreted as date
- Whether you like it or not: an integer, interpreted as a Boolean
- [10 points] Insert at least five tuples using the SQL INSERT command five (or more) times. You should insert at least one restaurant you liked, at least one restaurant you did not like, and at least one restaurant where you leave the iLike field NULL.
- [10 points] Write a SQL query to return all restaurants in your table.
- [15 points] Now experiment with a few of SQLite's output formats using the SQL query you wrote for question 4:
- print the results in comma-separated form
- print the results in list form, delimited by " | "
- print the results in column form, and make each column have width 15
- for each of the formats above, try printing/not printing the column headers with the results
- [15 points] Modify your SQL query such that it prints "I liked it" or "I hated
it" for each restaurant you liked or not. Note that you are not allowed to modify the table on disk. You should be able to answer this question using only a SELECT statement, although you may need to look in the sqlite documentation for some ideas about how to do it. A solution that creates and uses an extra table, howerver, will be accepted.
- [15 points] Write a SQL query that returns all restaurants that you like, but
have not visited since more than 3 months ago.