Skip to content

Commit 9e611f2

Browse files
committed
Fix field order to match actual results
1 parent 9fffd23 commit 9e611f2

File tree

1 file changed

+3
-3
lines changed
  • user_guide_src/source/database/query_builder

1 file changed

+3
-3
lines changed

user_guide_src/source/database/query_builder/118.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
* MySQL Produces:
3131
* DELETE `order_line` FROM `order_line`
3232
* 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`
33+
* SELECT 3 `line`, 48372 `order`, 'Keyboard' `product`, 1 `qty` UNION ALL
34+
* SELECT 4 `line`, 48372 `order`, 'Mouse' `product`, 1 `qty` UNION ALL
35+
* SELECT 5 `line`, 48372 `order`, 'Monitor' `product`, 2 `qty`
3636
* ) `del`
3737
* ON `order_line`.`order` = `del`.`order` AND `order_line`.`line` = `del`.`line`
3838
* WHERE `del`.`qty` > 1

0 commit comments

Comments
 (0)