摘要:
1. MySQL的数据类型在MySQL中有如下几种数据类型:(1)数值型数值是诸如32 或153.4 这样的值。MySQL 支持科学表示法,科学表示法由整数或浮点数后跟“e”或“E”、一个符号(“+”或“-”)和一个整数指数来表示。1.24E+12 和23.47e-1 都是合法的科学表示法表示的数。而1... 阅读全文
摘要:
作用最大的: Ctrl+鼠标左键 在方法上往下移然后点,即可转到 被调用的方法上Ctrl+Alt+sr : 自动生成get set方法作用域 功能 快捷键 全局 查找并替换 Ctrl+F 文本编辑器 查找上一个 Ctrl+Shift+K 文本编辑器 查找下一个 Ctrl+K 全局 撤销 Ctrl+Z 全局 复制 Ctrl+C 全局 恢复上一个选择 Alt+Shift+↓ 全局 剪切 C... 阅读全文
摘要:
sap.net aspx代码代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<tdstyle="width:944px;height:19px;"><asp:GridViewID="GVImage"AutoGenerateColu... 阅读全文
摘要:
---查出表中重复的所有的记录select * from TB_PRODUCT_CATEGORYwhere pc_namein (select pc_name from TB_PRODUCT_CATEGORY group by pc_name,pc_parent_id having count(pc_id) > 1--这里一定要having count(字段)>数值) 阅读全文
摘要:
在pl/sql中查hibernate的session连接数select count(*) from v$sessionselect count(*) from V$SESSION_WAIT==========================带openSession()必须手动关闭session,没带的hibernate可以自动关闭. 1. ====代码Code highlighting produ... 阅读全文
摘要:
<script> alert(screen.width+"*"+screen.height) </script> --------------------------------------------------------------- screen.width ------------------------------------------------------... 阅读全文
摘要:
.nav {position: relative;/*margin: 0px 0px 0px 0px; /*主菜单的距离 为:上,右,下,左*/width:961px;margin: 0 auto 0px auto;background: url(images/bImg/nav_bg.png) no-repeat 0 -36px;}======================使用margin的au... 阅读全文
摘要:
margin在中文中我们翻译成外边距或者外补白(本文中引用外边距)。他是元素盒模型(box model)的基础属性。一、margin的基本特性margin属性包括margin-top,margin-right,margin-bottom,margin-left,margin,可以用来设置box的margin area。属性margin可以用来同时设置box的四边外边距,而其他的margin属性只能... 阅读全文
摘要:
我用的是第一种方法方法一:<script language="javascript"> var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1] //extra height in px to add to iframe in FireFox ... 阅读全文
摘要:
----1. 该函数接受3个可选参数,返回3个数字的和CREATE OR REPLACE FUNCTION add_three_numbers(a NUMBER:=0, b NUMBER:=0, c NUMBER:=0)RETURN NUMBER ISBEGIN RETURN a+b+c;END;----调用FUNCTION add_three_numbers----1. 位置表示法调用函数BEG... 阅读全文