02 2010 档案

摘要:一.Oracle数据库中常用的数据类型 varchar2(长度)可变长字符串 char(长度) 定长 number()表示整数或者浮点数number(8) number(8,2) clog 字符的大对象 blog 二进制的大对象 二.数据库查询 1)SELECT语句 从表中提取查询数据.语法为SELECT [DISTINCT] {column1,column2,…} FROM tablename WHERE {conditions} GROUP BY {conditions} ORDER BY {expressions} [ASC/DESC]; 说明:SELECT子句用于指定检索数据库的中哪些 阅读全文
posted @ 2010-02-26 12:03 Spring MVC 3 阅读(175) 评论(0) 推荐(0)
摘要:<input type="button" onclick="checkAll();" value="全选"/><input type="checkbox" id="ids" name="ids" value=""/>function checkAll(){ var ids=document.getElementsByName('ids'); for(i=0;i<ids.length;i++) ids[i].ch 阅读全文
posted @ 2010-02-02 19:45 Spring MVC 3 阅读(527) 评论(0) 推荐(0)