What sql statement would allow me to change a value in the column STATUS from O to A in a table?
Is that possible at all?
THanks.
Printable View
What sql statement would allow me to change a value in the column STATUS from O to A in a table?
Is that possible at all?
THanks.
UPDATE tablea SET col1 = 'A';
And add some WHERE condition like
...WHERE col1 = 'O' ;)