iamme
Lifer
edit: another question:
i'm working with 1 table called POSTALCODE. i need to change the value of CCEXISTS to 'NO', if COMBOCODE is blank (null). the datatype of COMBOCODE is number. here's what i have:
UPDATE POSTALCODE SET CCEXISTS = 'NO'
WHERE COMBOCODE = Null ;
am i doing something wrong here?
------------------------------------------------------------------------------
i have a table where i'm trying to insert a new row and then display the "stateprovname" column to show that the table has been updated:
INSERT INTO STATEPROV
VALUES(1, 20, 120, 'ON', 'ONTARIO')
SELECT STATEPROVNAME
FROM STATEPROV;
when i try to save/run it,i get a "missing semicolon" error and the SELECT is highlighted. i've tried to put a semicolon after then VALUE(xxx) statement, but i get errors that way too. am i missing something simple?
i'm working with 1 table called POSTALCODE. i need to change the value of CCEXISTS to 'NO', if COMBOCODE is blank (null). the datatype of COMBOCODE is number. here's what i have:
UPDATE POSTALCODE SET CCEXISTS = 'NO'
WHERE COMBOCODE = Null ;
am i doing something wrong here?
------------------------------------------------------------------------------
i have a table where i'm trying to insert a new row and then display the "stateprovname" column to show that the table has been updated:
INSERT INTO STATEPROV
VALUES(1, 20, 120, 'ON', 'ONTARIO')
SELECT STATEPROVNAME
FROM STATEPROV;
when i try to save/run it,i get a "missing semicolon" error and the SELECT is highlighted. i've tried to put a semicolon after then VALUE(xxx) statement, but i get errors that way too. am i missing something simple?