postgresql SQL語句變量的使用說明
一般變量使用我們都是放在函數裡面,這裡開發需求,要在SQL直接使用變量,方便查找一些問題,比如時間變量,要根據時間進行篩選
這裡有三種方法可以實現
1.psql命令使用變量
表數據如下:
hank=> select * from tb2; c1 | c2 | c3 ----+-------+---------------------------- 1 | hank | 2018-02-06 10:08:00.787503 2 | dazui | 2018-02-06 10:08:08.542481 3 | wahah | 2018-02-06 10:08:15.468527 4 | aaaaa | 2018-02-06 10:18:39.289523
SQL文本如下
cat hank.sql select * from tb2 where c2=:name and c3>=:time;
通過psql查看
psql -v name="'hank'" -v time="'2018-02-06 10:08:00'" -f hank.sql c1 | c2 | c3 ----+------+---------------------------- 1 | hank | 2018-02-06 10:08:00.787503
或者
psql -v name="'hank'" -v time="'2018-02-06 10:08:00'" -c '\i hank.sql' c1 | c2 | c3 ----+------+---------------------------- 1 | hank | 2018-02-06 10:08:00.787503
效果一樣
2.\set使用變量
hank=> \set name hank hank=> \set time '2018-02-06 10:09:00' hank=> select * from tb2 where c2=:'name' and c3>=:'time'; c1 | c2 | c3 ----+------+---------------------------- 1 | hank | 2018-02-06 10:08:00.787503
3.通過定義參數實現
設置一個session級別的參數,通過current_setting取值
hank=> set session "asasd.time" to "2018-02-06 10:09:00"; SET hank=> select * from tb2 where c3 >= current_setting('asasd.time')::timestamp; c1 | c2 | c3 ----+-------+---------------------------- 4 | aaaaa | 2018-02-06 10:18:39.289523 (1 row)
補充:postgresql存儲函數/存儲過程用sql語句來給變量賦值
--定義變量 a numeric;
方式一:
select sqla into a from table1 where b = '1' ; --這是sql語句賦值
方式二:
sql1:= 'select a from table1 where b = ' '1' ' '; execute sql1 into a; --這是執行存儲函數賦值
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。如有錯誤或未考慮完全的地方,望不吝賜教。
推薦閱讀:
- postgresql 索引之 hash的使用詳解
- PostgreSQL查看版本信息的操作
- 查看postgresql系統信息的常用命令操作
- psql除法保留小數,實現向上取整和向下取整操作
- PostgreSQL 實現sql放入文件批量執行