chore: bootstrap independent git workflow
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
12
examples/sql/mysql/export_query.sql
Normal file
12
examples/sql/mysql/export_query.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
USE qa_demo;
|
||||
|
||||
SELECT
|
||||
t.id AS ticket_id,
|
||||
a.email,
|
||||
t.title,
|
||||
t.status,
|
||||
t.amount_cents,
|
||||
t.created_at
|
||||
FROM tickets t
|
||||
JOIN accounts a ON a.id = t.account_id
|
||||
ORDER BY t.id;
|
||||
Reference in New Issue
Block a user