I have two tables which are used to store details of different types of events. The tables are almost identical, with fields such as date, duration etc. I'm trying to perform a join on the two tables and sort them by the mutual field 'date'.
Ben sadece tek bir tablo için bir 'tip' alanını eklemeniz ve tek yerde depolamak, ne yazık ki ben kullanıyorum cms doğası buna izin vermez daha kolay olacağını biliyorum.
Sadece bu gerçekleştirmek için bir yolu var mı? Aşağıdaki sorgu sonucu döndürür.
$sql = "SELECT * FROM Events_One a, Events_Two b WHERE a.Date > now() OR b.Date > now() ORDER BY Date ASC LIMIT ".$limit;