anonymous
2010-11-09 19:12:03 UTC
accept p_newSerial prompt 'Enter New Serial Number:'
UPDATE CAR
SET SERIAL = '$p_newSerial'
WHERE SERIAL = '$p_oldSerial';
everytime i run this, i keep getting the '0 rows updated' statement. Could this be because the primary key serial in this table is a foreign key in other tables..?? how should i fix this so that the serial is changed...please help.