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

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -