Hello, I have a php system, using codeigniter, and it runs the following command:
$data['dados_tabelas'] = Tabela1::find_by_sql('SELECT * FROM tabela1) UNION (Select * from tabela2)');
More or less.
I wanted to know if I have to find out what data came from which table, because I want to bring the data of table1 of one color and those of table2 of another color into view.
Thanks