Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"files.autoSave": "afterDelay",
"screencastMode.onlyKeyboardShortcuts": true,
"terminal.integrated.fontSize": 18,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.fontAliasing": "antialiased",
"workbench.statusBar.visible": true,
Expand Down
5 changes: 4 additions & 1 deletion Chapter 1/Select Last Name and OrderID.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
SELECT LastName,
OrderId
FROM Customer
JOIN Orders on Customer.CustomerID = Orders.CustomerId;
JOIN Orders on Customer.CustomerID = Orders.CustomerId;
SELECT LastName,
OrderId
FROM Customer;