出勤予定


6月18日(木)
6月19日(金)
6月20日(土)
6月21日(日)
6月22日(月)
6月23日(火)
6月24日(水)
select 
		t_schedule.*,
		t_schedule.time_stt schedule_time_stt,
		t_schedule.time_end schedule_time_end,
		m_cast.*,
		m_cast.del_login_id cast_del_login_id,
		m_shop.name shop_name,
		m_shop.background_color,
		m_shop.color
		 from t_schedule 
		LEFT JOIN m_cast
		ON m_cast.cast_id = t_schedule.cast_id

		LEFT JOIN m_shop
		ON m_shop.shop_id = m_cast.shop_id
		 WHERE  date = '2026/06/21' AND  t_schedule.del_login_id = 0 order by  m_cast.orderex

Unknown column 't_schedule.time_stt' in 'field list'