Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Microsoft SQL Server Management Studio 2008, is there a secret to be able to edit one row based on a key?

There's an option to do "Edit Top 200 Rows", but what if I want to select some other row and edit it in the datagrid? I would rather do that than code an update statement and risk messing up the where clause.

share|improve this question

2 Answers

up vote 37 down vote accepted

Use the "Edit top 200" option, then click on "Show SQL panel", modify yoru query with your WHERE clause, and execute the query. You'll be able to edit the results.

share|improve this answer
Perfect - Thanks! – NealWalters Nov 13 '09 at 14:21
2  
Thanks! And just to add the keyboard shortcuts (SQL Server 2012 - not sure about previous versions) After using the "Edit top 200" option, you can press CTRL-3 to edit the query, CTRL+R to run the query. – gordon613 Mar 6 at 17:57

The menu location seems to have changed to:

Query Designer --> Pane --> SQL

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.