将日期插入 date9

Insert date into date9

在我的 PROC SQL 片段中,我正在尝试比较数据类型 date9 的列。到日期 31.12.2015'。我试过了:

test_date = '31DEC2015' 

这 returns 我出现以下错误:

ERROR: Expression using equals (=) has components that are of different data types.

正确的语法是什么?

将 "d" 添加到引用日期值的末尾:

test_date = '31DEC2015';