2018年11月28日 星期三

[ 常見問題 ] How to compare dates in datetime fields in Postgresql?

Source From Here 
Question 
How to make below query right while the column update_date is of type as "date/time"? 
  1. select * from table where update_date >= '2013-05-03' AND update_date <= '2013-05-03'  
How-To 
One example as below: 
  1. SELECT *  
  2. FROM table  
  3. WHERE update_date >= '2013-05-03'::date  
  4. AND update_date < ('2013-05-03'::date + '1 day'::interval);  
Supplement 
PostgreSQL Doc - Date/Time Functions and Operators

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...