OLD | NEW |
1 # 2001 September 15. | 1 # 2001 September 15. |
2 # | 2 # |
3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
5 # | 5 # |
6 # May you do good and not evil. | 6 # May you do good and not evil. |
7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
9 # | 9 # |
10 #*********************************************************************** | 10 #*********************************************************************** |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 insert into a values (1); | 458 insert into a values (1); |
459 insert into b values (2, 1, 'xxx'); | 459 insert into b values (2, 1, 'xxx'); |
460 insert into b values (1, 1, 'zzz'); | 460 insert into b values (1, 1, 'zzz'); |
461 insert into b values (3, 1, 'yyy'); | 461 insert into b values (3, 1, 'yyy'); |
462 select a.id, b.id, b.text from a join b on (a.id = b.aId) | 462 select a.id, b.id, b.text from a join b on (a.id = b.aId) |
463 order by a.id, b.text; | 463 order by a.id, b.text; |
464 } | 464 } |
465 } {1 2 xxx 1 3 yyy 1 1 zzz} | 465 } {1 2 xxx 1 3 yyy 1 1 zzz} |
466 | 466 |
467 finish_test | 467 finish_test |
OLD | NEW |