sql中的动态表
有没有在sql server 2000中创建动态表的方法?
Is there any method for creating dynamic tables in sql server 2000?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有在sql server 2000中创建动态表的方法?
Is there any method for creating dynamic tables in sql server 2000?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您可以通过在临时表前添加 octothorp (
#
) 来创建临时表,也可以使用以@
符号为前缀的表变量。create table #tempTable (col1 char(1)) -- 临时表
declare @tempTableVariable table (col1 char(1)) -- 表变量
From http://www.sqlteam.com/article/temporary-tables
You can create temporary tables by prefixing them with an octothorp (
#
), or you can use table variables which are prefixed with the@
symbol.create table #tempTable (col1 char(1)) -- Temporary table
declare @tempTableVariable table (col1 char(1)) -- Table variable
From http://www.sqlteam.com/article/temporary-tables
这是返回表变量的用户定义函数的示例:
希望这有帮助
Here is an example of a user defined function that returns a table variable :
Hope this helps