-
-
Save chilversc/1479112 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
os.orders_status_id, | |
os.date_added, | |
os.customer_notified, | |
os.comments, | |
o.customers_id, | |
o.customers_email_address, | |
o.orders_status, | |
o.date_purchased, | |
c.customers_id, | |
c.entry_appt_needed AS yns | |
FROM orders_status_history os, orders o | |
JOIN address_book c ON c.customers_id = o.customers_id | |
WHERE os.orders_id = 113 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment