1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| 8i CYRIL> select version from v$instance;
VERSION
-----------------
8.1.7.4.0
1 ligne sélectionnée.
8i CYRIL> select *
2 from dvp
3 ;
A
----------
120
256
2 ligne(s) sélectionnée(s).
8i CYRIL> select *
2 from dvp2;
A B
---------- ----------
256 33
1 ligne sélectionnée.
8i CYRIL> select *
2 from dvp3;
B C
---------- ----------
33 33
125 XXX
2 ligne(s) sélectionnée(s).
8i CYRIL> select *
2 from dvp, dvp2, dvp3
3 where dvp.a = dvp2.a(+)
4 and dvp2.b = dvp3.b(+);
A A B B C
---------- ---------- ---------- ---------- ----------
256 256 33 33 33
120
2 ligne(s) sélectionnée(s). |
Partager