在同一查询中更改列和添加列的语法
是否可以在 MSQL 的同一个更改表查询中更改列并添加新列?我尝试查看下面的 MSDN 文章,但理解起来有点混乱。我可以轻松地使用多个查询来完成此操作,但如果可能的话,我宁愿使用一个查询来完成此操作。谢谢。
Is it possible to both alter a column and add a new column in the same alter table query for MSQL? I've tried looking at the below MSDN article, but it was a bit confusing to understand. I could easily do it with multiple queries, but would rather do it with one query if possible. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您需要分批进行,
但是您可以一次添加超过 1 列
no you need to do it in separate batches
you can however add more than 1 column at a time