SQL Server Question:
I have a table with appx. 1000 already existing rows, and 5 columns
How can I update the value at row Y in column ?
I don’t have any keys or conditions for the where.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Note that in
SQLthere is no concept of implicit row order.There is no
n'th rowunless you define the ordering condition (columnin example above).In this table:
, the row
(1, 2)is first when ordering bycol1, and second when ordering bycol2.