1
I have the following consultation to be made:
"SELECT DISTINCT
andamento_processual.licenciamento_cod,
andamento_processual.inter_simplificada_cod,
andamento_processual.inter_pretendida_cod,
andamento_processual.processo_numero,
andamento_processual.processo_situacao,
licenciamento.licenciamento_empreendimento_nome,
empreendimento.empreendedor_nome_empreendimento,
intervencao_amb_pretendida.inter_pretendida_cod,
intervencao_amb_pretendida.intervencao_nome_empreendedor, <---
intervencao_amb_simplificada.inter_simplificada_cod,
intervencao_amb_simplificada.intervencao_nome_empreendedor <----
FROM
andamento_processual
LEFT OUTER JOIN licenciamento ON andamento_processual.licenciamento_cod = licenciamento.licenciamento_cod
LEFT OUTER JOIN empreendimento ON licenciamento.licenciamento_empreendimento_cod = empreendimento.empreendimento_cod
LEFT OUTER JOIN intervencao_amb_pretendida ON andamento_processual.inter_pretendida_cod = intervencao_amb_pretendida.inter_pretendida_cod
LEFT OUTER JOIN intervencao_amb_simplificada ON andamento_processual.inter_simplificada_cod= intervencao_amb_simplificada.inter_simplificada_cod
WHERE
andamento_processual.processo_numero";
My problem is that there are two variables of the same name only in different tables, I put a arrow pointing to them. When I put to display in the table, only show the results of "intervencao_amb_simplified.intervenca_enterprising name".
I tried to do it this way, inside WHILE:
if($inter_simplificada_cod){
$nomeSimplEmpreendedor = $row['intervencao_nome_empreendedor'];
}else if($inter_pretendida_cod){
$nomePretEmpreendedor = $row['intervencao_nome_empreendedor'];
}
But it didn’t work! There’s a way I can solve this without changing the variable name in the two tables?
I may have a bit of a bad view but the lines you pointed out have the same field name but are from different tables.
– anonimo
is because one variable is saved in the table "intervencao_amb_desired" and another in the "intervencao_amb_simplified", I put database, but they are tables. I was wrong, I tidied up here
– user192882