0

我有一个包含 4 列的文本文件,我必须从中创建 9 列。

例子

输入

id,
no,
product, 
quantity

派生列

id, 
no,
product, 
quantity,
id_out,
no_out,
product_out, 
quantity_out,
Type

在这里,我将所有四个 Out 行作为输入,但 Type 与 Input 无关。稍后将由参考文本文件填充。那么你能告诉我如何添加新列吗?

欣赏你的努力。

谢谢你,

343

4

2 回答 2

0

我通过使用 Null 运算符得到...感谢您的努力。

于 2012-09-27T17:44:35.830 回答
0

如果您只想要结构,您可以选择 NULL 值

  SELECT id, 
           no,
           product, 
           quantity,
           NULL as [id_out],
           NULL as [no_out],
           NULL as [product_out], 
           NULL as [quantity_out],
           NULL as [Type]
于 2012-09-27T16:11:59.007 回答