需要有关“选择进入”的帮助
我正在尝试创建我的第一个数据集市。我正在使用“选择进入”创建维度表,
代码如下:
select distinct fpc_number, fpc_desc
into m2mdata01dw..ProdClass
from m2mdata01..INPROD
在这种情况下如何设置自动编号主键?
I'm trying to create my first data mart. I am creating my dimension table with a "Select Into"
The code is as follows:
select distinct fpc_number, fpc_desc
into m2mdata01dw..ProdClass
from m2mdata01..INPROD
How can I set up a autonumber primary key in this situation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这是比 alter table 更好的解决方案,在进行选择时创建标识。
This is the better solution than alter table I think, create the identity at the time you do the selct into.
您可以在 select into 完成后添加身份。
You can add an identity after the select into completes.