关于日期格式的问题
CREATE TABLE MX
(BH CHAR(11) NULL DEFAULT '',
RIQI CHAR(10) NULL DEFAULT '',
SHL DECIMAL(14,2) DEFAULT 0
)
表MX 中RIQI存储的是日期格式的值 格式为 YYY-MM-DD (例:2009-10-21)
但是在操作过程中 会错误录入 2009-02-31、200-02-01、2008-0130
这样的错误的日期格式 。如何能够查出哪些数据的格式不符合日期格式?
我现在就用这样简单的办法 :
select * from mx where substring(riqi,5,1)<>'-'
select * from mx where substring(riqi,8,1)<>'-'
select * from mx where substring(riqi,6,2)='02' and substring(riqi,9,2)='30'
select * from mx where substring(riqi,6,2)='02' and cast(substring(riqi,9,2) as int)>28
这些方法来查 但是日期格式不正确的方式太多了 像这样来检查 很费劲 并且查出来的也不全。有什么更好的方法?