|
I have a column "credit/debit" in a table named "bank"
the data type for this column is VARCHAR2(25)
I tried to update the row by altering the value of the column "credit/debit"
my query was :
UPDATE BANK
SET CREDIT/DEBIT = 'YES'
WHERE FIRST_NAME = 'LUKE'
but i get the error
ORA-00927: missing equal sign
wat to do ?
thanx
|