Database Reference
In-Depth Information
Listing 4.20 Example of Static Table Data Storage
Click here to view code image
CREATE TABLE users (
email text PRIMARY KEY,
first_name text,
last_name text,
password text
);
SELECT * FROM USERS;
email
| first_name | last_name
| password
..................+............+...........+.................
russ@example.com |
Russ | Bradberry | acb-
d18db4cc2f85c
eric@example.com |
Eric |
Lubow |
a48153c2edb888f9
eddie@example.com |
Edward |
Kim |
c08992871dc02c13
john@example.com |
John | Dougherty |
8c4e114e301c4a7d
steve@example.com |
Steve | Knightley |
a4b18d8476c6caf5
 
Search WWH ::




Custom Search