上一页 1 2 3 4 5 6 ··· 8 下一页

2017年9月18日

表分区

摘要: --范围分区--建表create table orders( order_id number(12), order_date date not null, order_total number(8,2)) partition by RANGE(order_date)( partition p1 VA 阅读全文

posted @ 2017-09-18 08:38 溜氓 阅读(140) 评论(0) 推荐(0)

同义词

摘要: --私有同义词--私有同义词权限grant create synonym to scott;--创建私有同义词create synonym dp for scott.dept;--将查询dept的权限授予qjt这个用户GRANT SELECT ON dept to QJT --公有同义词--公有同义 阅读全文

posted @ 2017-09-18 08:33 溜氓 阅读(243) 评论(0) 推荐(0)

单行函数

摘要: --字符函数--1.ASCII 返回与指定的字符对应的十进制数;select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual; --2.CHR 给出整数,返回对应的字符;select chr(54740) zh 阅读全文

posted @ 2017-09-18 08:32 溜氓 阅读(155) 评论(0) 推荐(0)

Oracle入门

摘要: --创建用户create user qjt identified by 1234 --权限grant connect to qjt grant resource to qjt --建表create table userinfo(id number primary key not null) --查询 阅读全文

posted @ 2017-09-18 08:30 溜氓 阅读(175) 评论(0) 推荐(0)

2017年8月28日

面试题

摘要: 3.spring 是什么?根据你的立即详细谈谈你的见解 目的:解决企业应用开发的复杂性 功能:使用基本的JavaBean代替EJB,并提供了更多的企业应用功能 范围:任何java应用 简单来说,spring是一个轻量级的控制反转 (loc)和面向切面的(aop)的容器框架 轻量——从大小与开销两方面 阅读全文

posted @ 2017-08-28 09:24 溜氓 阅读(172) 评论(0) 推荐(0)

2017年8月21日

SpringMVC核心技术---转发和重定向

摘要: @Controller public class Mycontroller { //转发 @RequestMapping("/adduser") public String add(HttpServletRequest request){ request.setAttribute("happy","aa"); return "/listus... 阅读全文

posted @ 2017-08-21 08:43 溜氓 阅读(197) 评论(0) 推荐(0)

处理器方法的返回值

摘要: 1.Object 2.Object--map 3.Object--List 阅读全文

posted @ 2017-08-21 08:42 溜氓 阅读(219) 评论(0) 推荐(0)

2017年8月20日

解决静态资源的方法

摘要: 1.web.xml 2配置 3.配置 阅读全文

posted @ 2017-08-20 09:29 溜氓 阅读(199) 评论(0) 推荐(0)

请求流程图

摘要: 阅读全文

posted @ 2017-08-20 09:26 溜氓 阅读(175) 评论(0) 推荐(0)

return void ajax

摘要: public class UserInfo { private String name; private Integer age; public String getName() { return name; } public void setName(String name) { this.name = name; ... 阅读全文

posted @ 2017-08-20 09:25 溜氓 阅读(136) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 8 下一页

导航