CS377: Database Design - Introduction to Databases (3 Points)
Developed by Professor Tralie and Professor Mongan.Exercise Goals
The goals of this exercise are:- To become familiar with the basic structure of a database
- To write a SQL statement
Enter your Ursinus netid before clicking run. This is not your ID number or your email. For example, my netid is wmongan
(non Ursinus students can simply enter their name to get this to run, but they won't get an e-mail record or any form of credit).
Netid |
MyFirstStatement.sql
-- TODO: insert a value into the mytable database table
-- TODO: retrive the value from the table
-- HINT: The answer is [{"columns":["a"],"values":[[42]]}]
Setup.sql
CREATE TABLE mytable (a int);