Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Created May 17, 2024 21:34
Show Gist options
  • Save PaulieScanlon/14c648bd218a1b1835e9d1672b39a9e9 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/14c648bd218a1b1835e9d1672b39a9e9 to your computer and use it in GitHub Desktop.
Join Example SQL query
SELECT
orders.order_id,
orders.order_date,
orders.first_name,
orders.last_name
FROM orders
INNER JOIN customers ON orders.order_id = customers.customer_id
LIMIT 50;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment