在临时表中插入另一个表的名称 SQL Server 2008
有没有办法得到类似的东西:
id NameColumn
--------------
1 sex
2 age
3 weight
4 height
...来自已知的表:
sex age weight height....
--------------------------
m 12 200 200
f 22 100 150
...
这是因为我有大约 300 个字段,所以我想制作一个地图表。
Is there a way to have something like:
id NameColumn
--------------
1 sex
2 age
3 weight
4 height
...from a known table:
sex age weight height....
--------------------------
m 12 200 200
f 22 100 150
...
This is because I have like 300 fields so I would like to maker a map table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有一个已知的表
这将为您提供所需的输出
输出:
如果您想从中创建一个表,例如
Say you have a known table
This gives you the output required
Output:
If you wanted to create a table out of it, something like