如何在oracle中创建表作为选择(CTAS)?
我需要使用 CTAS(创建表作为选择)
创建一个名为 Au_Books_ZL
的表,其中包含 au_id、fname、lname、title_id、title、Pub_id、price 和收入(即价格*销售额)
。
我在线浏览了其他问题,但它们没有显示如何在查询中包含所有属性(lname、fname、title_id 等)。我如何编写 CTAS 来创建新表?
I need to use CTAS (Create Table As Select)
to create a table named Au_Books_ZL
that contains au_id, fname, lname, title_id, title, Pub_id, price and revenue (which is price*sales)
.
I have browsed other questions online, but they don't show how to include all the attributes (lname, fname, title_id ect.) in the query. How could I write up my CTAS to create the new table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建表的语法类似于
The syntax for creating a table would be something like