This commit is contained in:
2026-05-11 20:22:04 +02:00
parent 2b4d843ae0
commit 0578bfc2ae
10 changed files with 591 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
SET NAMES utf8mb4;
SELECT oi.id, oi.original_name, oi.quantity, oi.project_generated
FROM order_items oi
WHERE oi.order_id = 1009
ORDER BY oi.id;