当前位置: 代码迷 >> 综合 >> pgsql 现有数据拼装临时表
  详细解决方案

pgsql 现有数据拼装临时表

热度:31   发布时间:2023-12-14 05:09:45.0

查询

select * from (VALUES (1,2),(3,4)) as tmp(id,info)
where tmp.id>1

这里写图片描述
####删除一小部分数据

delete from user using (values (1),(2),(3)) as tmp(id) where user.id=tmp.id;