1
I’m having a little problem that’s being a headache.
I want to update with a SET, where it involves two parameters concatenated.
Following update:
update tabela_usin usin
set usin.peca = &P1 || ' ' ||&P11
where usin.descricao = &P2
and usin.complem = &P3;
When running appears the screen for me to put the values of my parameter:
All are "STRINGS"
After I do Ok to give the update.
It returns as 0 updated rows
At first I thought it might be the ' ' I put on my set. but maybe that’s not it.
What I am missing??