-3
I have a Postgresql database and need to change the table Produto
with the column Permite_venda
. The items are with FALSE
and I need to move on to TRUE
How should I do?
I list all below:
select * from produto where permite_venda = 'f';
And how do I update?
Thank you very much solved my problem
– Fabio09909
Please, we are here to help. By the way, I ask you to mark the answer as accepted. Hug.
– Marcos Alexandre
Mark me another help I’ll make one . bat Mounted here but it didn’t work out can see what I did wrong C: Program Files (x86) Postgresql 9.2 bin set PGUSER=postgres set PGPASSWORD=a011 setPG=localhost set PGDATABASE=autosystem update product set permite_sell = ’t' Where permite_sell = 'f';
– Fabio09909
In that case, try another question. I can tell you that I’ve never done this kind of procedure, but it’s worth a try, only around here, we can’t put the code properly.
– Marcos Alexandre
Quiet... Thank you for your attention
– Fabio09909