如何在 Oracle 数据库中创建临时表?

How do you create a temporary table in an Oracle database?(如何在 Oracle 数据库中创建临时表?)
本文介绍了如何在 Oracle 数据库中创建临时表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 Oracle 数据库中创建一个临时表

I would like to create a temporary table in a Oracle database

类似的东西

Declare table @table (int id)

在 SQL 服务器中

然后用select语句填充它

And then populate it with a select statement

有可能吗?

谢谢

推荐答案

是的,Oracle 有临时表.这是AskTom<的链接/a> 描述它们的文章,这里是官方的 oracle CREATE表格文档.

Yep, Oracle has temporary tables. Here is a link to an AskTom article describing them and here is the official oracle CREATE TABLE documentation.

但是,在 Oracle 中,只有临时表中的数据是临时的.该表是其他会话可见的常规对象.在 Oracle 中频繁创建和删除临时表是一种不好的做法.

However, in Oracle, only the data in a temporary table is temporary. The table is a regular object visible to other sessions. It is a bad practice to frequently create and drop temporary tables in Oracle.

CREATE GLOBAL TEMPORARY TABLE today_sales(order_id NUMBER)
ON COMMIT PRESERVE ROWS;

<小时>

Oracle 18c 添加了私有临时表,它们是单会话内存对象.请参阅 文档 了解更多详情.可以动态创建和删除私有临时表.


Oracle 18c added private temporary tables, which are single-session in-memory objects. See the documentation for more details. Private temporary tables can be dynamically created and dropped.

CREATE PRIVATE TEMPORARY TABLE ora$ptt_today_sales AS
SELECT * FROM orders WHERE order_date = SYSDATE;

<小时>

临时表很有用,但它们在 Oracle 中经常被滥用.通常可以通过使用内联视图将多个步骤组合到单个 SQL 语句中来避免它们.


Temporary tables can be useful but they are commonly abused in Oracle. They can often be avoided by combining multiple steps into a single SQL statement using inline views.

这篇关于如何在 Oracle 数据库中创建临时表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)