PgSQl临时表创建及应用-qq代理ip地址-实例解析

这篇文章首要介绍了PgSQl暂时表创建及运用实例解析,文中经过示例qq代理ip地址代码介绍的十分具体,对我们的学习或许作业具有一定的参看学习价值,需要的朋友可以参看下

创建前可先删去

drop table tmp0

创建暂时表

select * into temp table tmp0 from xxx create index idx_tmp0_inner_cd on tmp0(inner_cd);

检查暂时表是否创建,返回0表示未创建,1为创建

select count(*) from pg_class where relname = ‘tmp0’

或许用下面,下面句子在pg和mysql中都适用

Create Table If Not Exists temp.MyTable(
xxx varchar (20) Primary key ,
thTime varchar (20) ,
name varchar (20)
)

相同可以用在删去表中:

DROP TABLE If Exists temp.mjp_temp_update_log

运用比如:

SELECT
ids,
code,
INTO TEMP TABLE tmp0
FROM
TEMP .m_product_x
WHERE
TEMP .m_product_x.ids = ”
GROUP BY
TEMP .m_product_x.code,
TEMP .m_product_x.ids;

CREATE INDEX idx_tmp0_inner_cd ON tmp0 (code);

SELECT
*
FROM
TEMP .m_product
INNER JOIN tmp0 ON TEMP .m_product.code = tmp0.code
WHERE
TEMP .m_product.ids = ”
ORDER BY
tmp0.xx,
tmp0.ss;
DROP TABLE tmp0;

以上便是本文的全部内容,希望对我们的学习有所协助,也希望我们多多支撑脚本之家。

共有 0 条评论

发表评论

邮箱地址不会被公开。 必填项已用*标注