ALTER TABLE my_table ADD @column INT

ALTER TABLE my_table ADD @column INT(ALTER TABLE my_table ADD @column INT)
本文介绍了ALTER TABLE my_table ADD @column INT的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果我想使用一个变量作为新列的名称,这在 MS SQL 中可行吗?

If i want to use a variable as name of the new column, is this posible in MS SQL?

不起作用的例子:

ALTER TABLE my_table ADD @column INT

这对我很有用:

EXEC ('ALTER TABLE my_table ADD ' + @column + ' INT')

推荐答案

这可以使用动态 sql 构建您的 DDL 并使用 EXEC 命令执行字符串.

This is possible using dynamic sql to build your DDL and using the EXEC command to execute the string.

Declare @SQL VarChar(1000)

SELECT @SQL = 'ALTER TABLE my_table ADD ' + @column + ' INT'

Exec (@SQL)

请参阅这篇文章.

我还要补充一点,当您冒险进入动态 sql 领域时,您需要注意不要将自己暴露在 SQL 注入攻击.总是清理传入的参数.

I will also add that the moment you venture to the land of dynamic sql, you need to take care to not expose yourself to SQL Injection attacks. Always clean up the parameters coming in.

正如 Philip 所提到的 - 在执行此操作之前要深思熟虑.可能的事实并不使它成为一件好事...

As Philip mentions - think long and hard before doing this. The fact that it is possible does not make it a good thing...

Erland Sommarskog 写了一篇关于使用动态 SQL 的详尽文章 - 动态 SQL 的诅咒与祝福我建议阅读全文.

Erland Sommarskog wrote an extensive article about using dynamic sql - The curse and blessings of dynamic SQL which I recommend reading fully.

这篇关于ALTER TABLE my_table ADD @column INT的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)