标签: sql oracle
我已经从一个表插入另一个表的值,我想检查一行中的两个列值是否相同在另一个表的一列中插入null(我在其中插入值的表。在我的示例中,它是table1) 。 我现有的查询如下,我应该如何根据我的要求进行转换。
INSERT INTO table1 (date1,date2) SELECT substr(numtodsinterval(MAX(date1)-MIN(date2),'day'), 12,8) FROM table2 where ....;