1 ORA-00932 inconsistent datatypes expected NUMBER got DATE
This error occurs when there is a mismatch between the data types of the columns in a SQL query. In this case, the query is expecting a column of type NUMBER but is receiving a column of type DATE.
To resolve this error, you will need to check the data types of the columns in your query and ensure that they are consistent. You may need to modify your query to convert the data types or use a different data type for the column in question.
原文地址: https://www.cveoy.top/t/topic/ftve 著作权归作者所有。请勿转载和采集!