Nasıl kullanılır katılmak ve birden nerede durum?

0 Cevap php

Aşağıdaki yapıya sahip bir db ettik

My table structure is countries

'id', 'int(11)', '', 'PRI', '', 'auto_increment'
'name', 'varchar(80)', 'YES', '', '', ''

holidays

'id', 'int(11)', '', 'PRI', '', 'auto_increment'
'holiday', 'varchar(90)', 'YES', '', '', ''
'same_date', 'tinyint(1)', 'YES', '', '', ''
'religions', 'varchar(50)', '', '', '', ''
'season', 'enum('Winter','Spring','Summer','Autumn')', '', '', 'Winter', ''
'rate', 'int(2)', '', '', '0', ''

holiday_countries

'id', 'int(11)', '', 'PRI', '', 'auto_increment'
'holiday_id', 'int(11)', '', '', '0', ''
'country_id', 'int(11)', '', '', '0', ''
'link', 'varchar(40)', '', '', '', ''

holiday_dates

'holiday_id', 'int(11)', 'YES', 'MUL', '', '' //  this refers to the holiday_id from holiday_countries table
'year', 'varchar(4)', 'YES', '', '', ''
'date', 'date', '', '', '0000-00-00', ''

Ve ben, belirli bir ülke ve özellikle yıl boyunca tatil almak için aşağıdaki sorguyu kullanın

 select hd.holiday_id
         , h.same_date
         , h.holiday
         , hd.date 
      from holidays as h
      join holiday_countries as hc on hc.holiday_id = h.id 
      join holiday_dates as hd on hd.holiday_id = hc.id 
      join countries as c on hc.country_id = c.id 
     where c.name='india'
       and hd.year='2010'

Örnek çıktı böyle olacak,

975, 1, 'Republic Day', '2010-01-26'
976, , 'India Independence Day', '2010-08-15'
977, 1, 'Gandhi Jayanti (Mahatma Gandhi birthday)', '2010-10-02'

Ama, ben iki yıl daha tarihlerini listelemek gerekir ve istenen çıkış bu gibi olurdu

id  same_date      holiday                    2010           2011        2012
975    1        'Republic Day'            '2010-01-26'  '2011-02-29' '2012-03-26'
976    0        'India Independence Day'  '2010-08-15'  '2011-08-15' '2012-08-15'
977    1        'Gandhi Jayanti'          '2010-10-02'  '2011-10-02' '2012-10-02'

I bu nasıl sorgulayabilir?

0 Cevap