gpt4 book ai didi

sql - 如何在 oracle 中创建表作为选择(CTAS)?

转载 作者:行者123 更新时间:2023-12-04 05:57:28 26 4
gpt4 key购买 nike

我需要使用 CTAS (Create Table As Select)创建一个名为 Au_Books_ZL 的表包含 au_id, fname, lname, title_id, title, Pub_id, price and revenue (which is price*sales) .

我在线浏览了其他问题,但它们没有显示如何在查询中包含所有属性(lname、fname、title_id 等)。我如何编写我的 CTAS 来创建新表?

最佳答案

创建表的语法类似于

CREATE TABLE au_books_zl
AS
SELECT au_id,
fname,
lname,
title_id,
title,
pub_id,
price,
price * sales as revenue
FROM <<whatever tables you need to select from>>
WHERE <<whatever conditions you need to apply>>

关于sql - 如何在 oracle 中创建表作为选择(CTAS)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9333897/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com