1035 proc sql noprint;
1036 create table four as select count(*) as TOT from bgfgs where record_date between 200401
1036! and 200501;
ERROR: 用 IN 的表达式具有不同数据类型的组件。
NOTE: PROC SQL where 子句优化过程中,引用的 IN 可能在某个时间从 OR 转换为 IN。
Hi,
The error message shows that you are comparing values with different data types.
You can avoid the data type conflict error by converting one value to the other.