3
Good afternoon, you guys
when executing the query below:
select PRO_Descricao, PED_Numero
from pedido p, item i, produto pr
where p.PED_Numero = i.PED_Numero
and i.PRO_Codigo = pr.PRO_Codigo
and PRO_Descricao >= 'SA'
and pro_descricao < 'SB'
appears the following message in SQL server 2012:
Nome da coluna 'PED_Numero' ambíguo.
What’s wrong with it?
Thanks buddy, it worked out here.
– Marconi