上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页
摘要: CAST()函数可以进行数据类型的转换。 CAST()函数的参数有两部分,源值和目标数据类型,中间用AS关键字分隔。 以下例子均通过本人测试。 一、转换列或值 语法:cast( 列名/值 as 数据类型 ) 用例: 1)、转换列 --将empno的类型(number)转换为varchar2类型。 s 阅读全文
posted @ 2017-10-30 09:53 ConfidentLiu 阅读(1078) 评论(1) 推荐(0) 编辑
摘要: Oracle使用SQL语句修改字段类型 1.如果表中没有数据 Sql代码 1 2 3 alter table 表名 modify (字段名1 类型,字段名2 类型,字段名3 类型.....) alter table student modify(id number(4)); 将student表中id 阅读全文
posted @ 2017-10-30 09:52 ConfidentLiu 阅读(14437) 评论(0) 推荐(1) 编辑
摘要: http://blog.csdn.net/tianxiezuomaikong/article/details/64930151 、、、、、、、、、、、 什么是JAP? JPA全称Java Persistence API,其通过JDK 5.0(或以上版本)的注解或XML配置方式来描述 对象-关系表的映 阅读全文
posted @ 2017-10-23 23:10 ConfidentLiu 阅读(12136) 评论(0) 推荐(1) 编辑
摘要: @Column标记表示所持久化属性所映射表中的字段,该注释的属性定义如下: @Target({METHOD, FIELD}) @Retention(RUNTIME) public @interface Column { String name() default ""; boolean unique 阅读全文
posted @ 2017-10-22 16:19 ConfidentLiu 阅读(35959) 评论(0) 推荐(0) 编辑
摘要: 注解:http://www.cnblogs.com/liangxiaofeng/p/6390868.html 注入方式:http://www.cnblogs.com/java-class/p/4727775.html 、、、、、、、、、、、、、、、、 Spring 依赖注入方式详解 阅读目录 1.S 阅读全文
posted @ 2017-10-19 10:31 ConfidentLiu 阅读(660) 评论(0) 推荐(0) 编辑
摘要: http://down.51cto.com/zt/5836 阅读全文
posted @ 2017-10-17 22:21 ConfidentLiu 阅读(92) 评论(0) 推荐(0) 编辑
摘要: (1)include指令 include指令告诉容器:复制被包含文件汇总的所有内容,再把它粘贴到这个文件中。 <%@ include file="Header.jsp"%> (2)include标准动作 <jsp:include page="Header.jsp"/> (3)采用JSTL <c:im 阅读全文
posted @ 2017-10-17 16:40 ConfidentLiu 阅读(7231) 评论(0) 推荐(0) 编辑
摘要: https://wenku.baidu.com/view/724cc9e2dd88d0d232d46a1b.html 阅读全文
posted @ 2017-10-13 16:14 ConfidentLiu 阅读(130) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/hanfeihanfei/p/7079210.html 阅读全文
posted @ 2017-10-12 17:46 ConfidentLiu 阅读(133) 评论(0) 推荐(0) 编辑
摘要: http://blog.itpub.net/10159839/viewspace-254449/ 、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、 OVER(PARTITION BY)函数介绍 开窗函数 Oracle从8.1.6开始提供分析函数,分析函数用于计算基于组的某种聚合值,它 阅读全文
posted @ 2017-09-28 11:43 ConfidentLiu 阅读(1105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 34 下一页