如何在 Microsoft SQL Server Management Studio 2008 中编辑某一特定行?
在 Microsoft SQL Server Management Studio 2008 中,是否存在能够基于键编辑一行的秘密?
有一个选项可以执行“编辑前 200 行”,但如果我想选择其他行并在数据网格中编辑它怎么办?我宁愿这样做,也不愿编写更新语句并冒弄乱 where 子句的风险。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用“编辑前 200 个”选项,然后单击“显示 SQL 面板”,使用 WHERE 子句修改查询,然后执行查询。您将能够编辑结果。
Use the "Edit top 200" option, then click on "Show SQL panel", modify your query with your WHERE clause, and execute the query. You'll be able to edit the results.
如何在Server Management Studio 2008/2012/2014/2016中编辑一个特定的行/元组
第1步:鼠标右键>选择“编辑前 200 行”
第 2 步:导航到查询设计器 > ;窗格> SQL (快捷键:Ctrl+3)
步骤 3: 修改查询
步骤 4: 鼠标右键>选择“执行 SQL”(快捷键:Ctrl+R)
How to edit one specific row/tuple in Server Management Studio 2008/2012/2014/2016
Step 1: Right button mouse > Select "Edit Top 200 Rows"
Step 2: Navigate to Query Designer > Pane > SQL (Shortcut: Ctrl+3)
Step 3: Modify the query
Step 4: Right button mouse > Select "Execute SQL" (Shortcut: Ctrl+R)
菜单位置似乎已更改为:
查询设计器 -->窗格 --> SQL
The menu location seems to have changed to:
Query Designer --> Pane --> SQL
如果您在使用“编辑前 200 行”选项后在保存结果窗格中的数据时遇到挑战,则以下步骤适合您:
参考: MS 文档
If you are facing challenges in saving data from the results pane after using Edit Top 200 Rows option, then the below steps are for you:
Ref: MS Docs