I need a help with Database

0

I have this table in my database

IneedtobeundertheCreated,Ihave1optioncalledPayment(insidedestáwithtwooptions,PAY(IWANTJACOMESWITHTHATPATTERN)andafterthatIcanchangeto(PAY).?

    
asked by anonymous 15.06.2017 / 21:51

1 answer

0

You can easily do this in PHPMyAdmin, I made an example, copy it the way it is.

To change PAGAR to PAGO , do:

UPDATE tabela SET Pagamento='PAGO' WHERE id='1';

Where tabela you complete with the name of your table and 1 the user you want to change.

    
15.06.2017 / 22:14