欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PostgreSQL中的替代变量实现

程序员文章站 2022-03-26 21:55:53
postgresql中的替代变量实现 postgres=# select * from tab_lei_1; c1 | c2 ----+---- (0 rows) postg...

postgresql中的替代变量实现

postgres=# select * from tab_lei_1;
 c1 | c2 
----+----
(0 rows)


postgres=# \set abc 'tab_lei_1'
postgres=# select * from :abc;
 c1 | c2 
----+----
(0 rows)


postgres=#