根据临时表(表Schema和数据)
根据临时表(表架构和数据),我如何创建物理表并向其中插入返回的记录?
According to a temporary table (Table Schema and data), how can i create a physical table and insert returned records to it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在下面的示例代码中,我使用 case 条件从临时表中检索列。
在第 2 步中,我们检查是否已从 case 语句中选择了任何列。
在步骤 3 中,我们仅选择从上述案例 stmnt 中检索到的列。
在步骤 4 中,我们使用上面选择的列名称创建物理表,然后插入其中。
最后删除这两个表,
我希望这对您有帮助
步骤1:
步骤2:
步骤3:
步骤4:
in the below sample code , i am retriving columns from the temp table using the case condition..
in the step 2 we are checking for any column has been selected from the case statement..
in the step 3 we are selecting only the columns which have been retrieved from the above case stmnt..
in the step 4 we are creating the physical table with the columns names which have selected above and then inserting into it..
atlast drop both the tables
i hope this would help you
step1:
step 2:
step 3:
step 4: