-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathview.sql
More file actions
26 lines (18 loc) · 771 Bytes
/
view.sql
File metadata and controls
26 lines (18 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- Query to view all records from the Users table
SELECT * FROM Users;
-- Query to view all records from the Languages table
SELECT * FROM Languages;
-- Query to view all records from the User_Selected_Languages table
SELECT * FROM User_Selected_Languages;
-- Query to view all records from the Word table
SELECT * FROM Word;
-- Query to view all records from the Word_Definition table
SELECT * FROM Word_Definition;
-- Query to view all records from the Word_List table
SELECT * FROM Word_List;
-- Query to view all records from the Words_In_List table
SELECT * FROM Words_In_List;
-- Query to view all records from the User_Learned_Words table
SELECT * FROM User_Learned_Words;
-- Query to view all records from the Translation table
SELECT * FROM Translation;