SQL
文章平均质量分 83
mikyz
这个作者很懒,什么都没留下…
展开
-
ORACLE常用数值函数、转换函数、字符串函数介绍
注:N表示数字型,C表示字符型,D表示日期型,[]表示内中参数可被忽略,fmt表示格式。 单值函数在查询中返回单个值,可被应用到select,where子句,start with以及connect by 子句和having子句。 (一).数值型函数(Number Functions) 数值型函数输入数字型参数并返回数值型的值。多数该类函数的返回值支持38位小数点,诸如:COS, COS原创 2017-04-06 17:02:35 · 3166 阅读 · 0 评论 -
Oracle database connection problem
PROBLEMYou are attempting to connect to an Oracle instance using JDBC and you are receiving the following error. java.sql.SQLException: Io exception: The Network Adapter c原创 2017-04-06 16:59:21 · 528 阅读 · 0 评论 -
ORA-00942 Table or View Does Not Exist Oracle Error
Cause: java.sql.SQLException: ORA-00942: table or view does not existThen I try to run the sql statement that the webapp trying to execute before hitting this error and it returns the results withou原创 2017-04-06 17:02:26 · 2933 阅读 · 0 评论 -
SQL_case when语法
sql 中 case when 语法sql语言中有没有类似C语言中的switch case的语句?? 没有,用case when 来代替就行了. 例如,下面的语句 比较表中A,B两个字段,并取出最大值select case when A>B then Awhen Aendas maxnufrom test_t 例如,下面的语原创 2017-04-06 17:16:58 · 274 阅读 · 0 评论