数据库名称:postgresql
数据库版本:8.4
内容/问题描述:
小弟有个table,字段属性是是text,存的资料是日期且有部分字段是有空值的, 存的格式
如下
2018/1/2
2018/12/1
2018/10/2
用
select * from table where date(date) between date(2018/1/1) and
date(2018/2/1)
会出现error 字段有空值的错误,想说用
select * from table where (date(date) between date(2018/1/1) and
date(2018/2/1)) and date !=''
会出现一样的问题,看来关念有误
麻烦各位高手指点,感谢