Postgresql
文章平均质量分 77
BeA_Trader
这个作者很懒,什么都没留下…
展开
-
Postgresql时间操作
Postgresql时间操作问题本机环境 select version(); PostgreSQL 9.6.3, compiled by Visual C++ build 1800, 64-bit1.date 操作符 select date’20180101’; 局限性: 只能精确到天 2 timestamp 遇到得问题 直接用timestamp 操作字符串拼接函数...原创 2018-07-03 16:39:00 · 1163 阅读 · 0 评论 -
Postgresql高级特性
1.多次使用到的查询 可以存为视图,方便下次查看,当然也可以直接保存查询 CREATE VIEW myview AS SELECT city, temp_lo, temp_hi, prcp, date, location FROM weather, cities WHERE city = name; SELECT * FROM myview; 视...原创 2018-07-04 11:59:17 · 930 阅读 · 0 评论