I have this query down which returns me data from two related tables. It takes all vehicle fields and all product fields with "id_transfer" the same
$cmd = "SELECT p.*, v.* FROM produtos AS p
INNER JOIN veiculos AS v
ON p.id_veiculo= v.id_veiculo where p.id_transfer = '$id_transfer' AND
v.id_transfer = '$id_transfer' AND nome LIKE '%$pesq%' ORDER by nome limit
$inicio,$registros
I'm not sure how to insert a 3rd table that does not need to be related.
It would look like this:
Selecione
todos tabala veiculo
todos tabela produtos
com seu id_tranfer iguais
e selecione
todos da tabela agenda_saidas
com status iguais ativo
Produto
+--------+----------------+---------------+
| id | Destino | Data |
+--------+----------------+---------------+
| 01 | Rio de Janeiro | 01/01/2015 |
| 02 | São Paulo | 01/01/2015 |
+--------+----------------+---------------+
Veiculo
+--------+----------------+---------------+
| id | Veiculo | Cor |
+--------+----------------+---------------+
| 01 | Palio | Preto |
| 02 | GOL | Branco |
+--------+----------------+---------------+
agenda_saidas
+--------+----------------+---------------+
| x1 | x2 | x3 |
+--------+----------------+---------------+
| xxx | xxx | xxx |
| xxx | xxx | xxx |
+--------+----------------+---------------+
while{
Resultado = Rio de Janeiro 01/01/2015 Palio Preto
Resultado = São Paulo 01/01/2015 GOL Branco
.....
Resultado = xxx xxx xxx
Resultado = xxx xxx xxx
.....
Se é que isso e possível..
}