We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fffd23 commit 9e611f2Copy full SHA for 9e611f2
user_guide_src/source/database/query_builder/118.php
@@ -30,9 +30,9 @@
30
* MySQL Produces:
31
* DELETE `order_line` FROM `order_line`
32
* INNER JOIN (
33
- * SELECT 48372 `order`, 3 `line`, 'Keyboard' `product`, 1 `qty` UNION ALL
34
- * SELECT 48372 `order`, 4 `line`, 'Mouse' `product`, 1 `qty` UNION ALL
35
- * SELECT 48372 `order`, 5 `line`, 'Monitor' `product`, 2 `qty`
+ * SELECT 3 `line`, 48372 `order`, 'Keyboard' `product`, 1 `qty` UNION ALL
+ * SELECT 4 `line`, 48372 `order`, 'Mouse' `product`, 1 `qty` UNION ALL
+ * SELECT 5 `line`, 48372 `order`, 'Monitor' `product`, 2 `qty`
36
* ) `del`
37
* ON `order_line`.`order` = `del`.`order` AND `order_line`.`line` = `del`.`line`
38
* WHERE `del`.`qty` > 1
0 commit comments