Why is no data saved when pull data from mysql whatever save format is table or list?
My sql statement is as below:
SELECT t.id, t.selection_odds, t.selection_column, t.selection_betoffer_type_id, t.selection_stake, t.selection_time, m.u_event_id
FROM `#__socceridea_tips_auto` AS t
LEFT JOIN `#__socceridea_mapping` AS `m` ON (`m`.`s_event_id` = `t`.`event_id`)
WHERE `t`.`tmp_pending`=1 AND (`t`.`selection_provider_id`=2 OR `t`.`selection_provider_id`=35) AND `m`.`e_time` > NOW()
My sql statement is as below:
SELECT t.id, t.selection_odds, t.selection_column, t.selection_betoffer_type_id, t.selection_stake, t.selection_time, m.u_event_id
FROM `#__socceridea_tips_auto` AS t
LEFT JOIN `#__socceridea_mapping` AS `m` ON (`m`.`s_event_id` = `t`.`event_id`)
WHERE `t`.`tmp_pending`=1 AND (`t`.`selection_provider_id`=2 OR `t`.`selection_provider_id`=35) AND `m`.`e_time` > NOW()