How would you Update the rows which are divisible by 10,
given a set of numbers in column?
Answer Posted / pandian s
UPDATE TableName SET Column1 = <Value>
WHERE ColumnName % 10 = 0
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is the difference between varchar and varchar types?
How to provide values to stored procedure parameters in ms sql server?
What are .mdf files?
What is the maximum size of a row in sql server?
How to configure and test odbc dsn settings?
How to use clusters?
What is table level trigger?
How to count rows with the count(*) function in ms sql server?
What is bulkcopy in sql?
Explain what is “asynchronous” communication in sql server service broker?
How to find out what is the default collation in a database?
How to generate create table script on an existing table in ms sql server?
Do you know what are the properties of the relational tables?
What you can do to delete a table without the delete trigger firing?
What do you understand by check constraint in sql server?