1、关于ORACLE中涉及到日期转换SQL时的错误 :
ORA-01830:日期格式图片在转换整个输入字符串之前结束

造成此种情况的原因是to_date('2009-09-09','yyyy-MM-dd')必须匹配,不能出现
to_date('2009-09-09 15:33:33','yyyy-MM-dd').
因为 我们在ORACLE的文档中可以知道 to_date函数
In Oracle/PLSQL, the to_date function converts a string to a date.

The syntax for the to_date function is:

to_date( string1, [ format_mask ], [ nls_language ] )

string1 is the string that will be converted to a date.

format_mask is optional. This is the format that will be used to convert string1 to a date.

nls_language is optional. This is the nls language used to convert string1 to a date.

2、ORA-00936:缺失表达式
解决办法:因为在SQL中存在ORACLE不支持的函数,或者有非法的字符串。

以后持续更新