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 50 51 52 53 54 55 56
|
WITH Courses AS (
Select to_Date('22/01/2011') Dt, 8 Place, 7 NumCourse from dual
Union all
Select to_Date('29/01/2011') Dt, 2 Place, 4 NumCourse from dual
Union all
Select to_Date('30/01/2011') Dt, 2 Place, 3 NumCourse from dual
Union all
Select to_Date('31/01/2011') Dt, 3 Place, 1 NumCourse from dual
Union all
Select to_Date('05/02/2011') Dt, 1 Place, 4 NumCourse from dual
Union all
Select to_Date('06/02/2011') Dt, 6 Place, 5 NumCourse from dual
Union all
Select to_Date('07/02/2011') Dt, 5 Place, 7 NumCourse from dual
Union all
Select to_Date('07/02/2011') Dt, 8 Place, 8 NumCourse from dual
Union all
Select to_Date('10/02/2011') Dt, 6 Place, 3 NumCourse from dual
Union all
Select to_Date('12/02/2011') Dt, 3 Place, 2 NumCourse from dual
Union all
Select to_Date('13/02/2011') Dt, 3 Place, 4 NumCourse from dual
Union all
Select to_Date('13/02/2011') Dt, 2 Place, 5 NumCourse from dual
Union all
Select to_Date('14/02/2011') Dt, 2 Place, 7 NumCourse from dual
Union all
Select to_Date('20/02/2011') Dt, 9 Place, 1 NumCourse from dual
Union all
Select to_Date('20/02/2011') Dt, 2 Place, 4 NumCourse from dual
Union all
Select to_Date('20/02/2011') Dt, 6 Place, 7 NumCourse from dual
Union all
Select to_Date('21/02/2011') Dt, -1 Place, 6 NumCourse from dual
Union all
Select to_Date('22/02/2011') Dt, 3 Place, 5 NumCourse from dual
Union all
Select to_Date('23/02/2011') Dt, 2 Place, 7 NumCourse from dual
Union all
Select to_Date('23/02/2011') Dt, 3 Place, 8 NumCourse from dual
Union all
Select to_Date('24/02/2011') Dt, 4 Place, 2 NumCourse from dual
Union all
Select to_Date('24/02/2011') Dt, -1 Place, 4 NumCourse from dual
Union all
Select to_Date('25/02/2011') Dt, 1 Place, 5 NumCourse from dual
Union all
Select to_Date('03/03/2011') Dt, 5 Place, 1 NumCourse from dual
Union all
Select to_Date('05/03/2011') Dt, 6 Place, 2 NumCourse from dual
Union all
Select to_Date('06/03/2011') Dt, 4 Place, 1 NumCourse from dual
Union all
Select to_Date('13/03/2011') Dt, 9 Place, 6 NumCourse from dual
) |
Partager