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 -

ruby on rails - Convert a Activerecord result with has_one associations into a single hash per record -

c# - Confused over DLL entry points (entry point not found exception) -