How to update all records in a table at the same time (without updating records one by one) using stored procedure -
I have a table named EMP (Ampainam, description). The table has 4 records, using the stored procedure, one by one, without updating the update, I want to update all the records with the same update statement.
UPDATE [tableName] SET [columnName] = [value] WHERE [condition]
Comments
Post a Comment