5
Hello, I have a php system, using codeigniter, and in it runs the following command:
$data['dados_tabelas'] = Tabela1::find_by_sql('SELECT * FROM tabela1) UNION (Select * from tabela2)');
That’s about the size of it. I wanted to know if there is any way I can find out which data came from which table, because I want to bring the Tabela1 data of one color and the table data of another color. Thank you