PostgreSQL中的替代变量

前端之家收集整理的这篇文章主要介绍了PostgreSQL中的替代变量前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

参考:https://www.postgresql.org/docs/current/static/app-psql.html

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=#
原文链接:https://www.f2er.com/postgresql/193118.html

猜你在找的Postgre SQL相关文章