上一页 1 2 3 4 5 6 7 ··· 29 下一页

2016年11月16日

摘要: SQLSERVER 1.查询某个数据库中所有的表名: SELECT Name FROM SysObjects Where XType='U' ORDER BY Name 2.查询数据库中的所有数据库名: SELECT Name FROM Master..SysDatabases ORDER BY N 阅读全文

posted @ 2016-11-16 16:55 上善其若水,厚德载物 阅读(1192) 评论(0) 推荐(0) 编辑

摘要: select distinct name from syscomments a,sysobjects b where a.id=b.id and b.xtype='p' and text like '%pro_GetSN%'; pro_GetSN为存储过程名 阅读全文

posted @ 2016-11-16 16:52 上善其若水,厚德载物 阅读(142) 评论(0) 推荐(0) 编辑

摘要: 1.oracle数据库分页 select * from (select a.*,rownum rc from 表名 where rownum<=endrow) a where a.rc>=startrow 2.DB2数据库分页 Select * from (select rownumber() ov 阅读全文

posted @ 2016-11-16 16:15 上善其若水,厚德载物 阅读(311) 评论(0) 推荐(0) 编辑

摘要: SQL>CREATE TABLE myEmp(empID number(4), name varchar2(20), sal number(6), job varchar2(10), dept number(2)); 阅读全文

posted @ 2016-11-16 15:29 上善其若水,厚德载物 阅读(271) 评论(0) 推荐(0) 编辑


2016年11月15日

摘要: 首先我们设置类如:.STYLE1 { width:150px; height:80px;color: #000000; border:1px solid #FF0000;} 解决让文字不超出CSS盒子的固定高宽我们只需要在此CSS类加入overflow:hidden;样式即可,加入后CSS类:.ST 阅读全文

posted @ 2016-11-15 11:19 上善其若水,厚德载物 阅读(2406) 评论(0) 推荐(0) 编辑

摘要: div{text-transform:capitalize}首字母大写 阅读全文

posted @ 2016-11-15 11:09 上善其若水,厚德载物 阅读(708) 评论(0) 推荐(0) 编辑

摘要: 阅读全文

posted @ 2016-11-15 11:01 上善其若水,厚德载物 阅读(370) 评论(0) 推荐(0) 编辑

摘要: margin是各个div相对的距离(定位) position是网页中的位置,不规则布局可以用这个 position:absolute和position:relative在一片css内不能和float一起使用 通常父级定义position:relative子级定义position:absolute,这 阅读全文

posted @ 2016-11-15 10:57 上善其若水,厚德载物 阅读(263) 评论(0) 推荐(0) 编辑

摘要: clear用于清除浮动,即内嵌到下一个图层 原来的情况: 清除浮动变为内嵌: 可能需要一个标签 div{clear:left} div{clear:right} div{clear:both} 阅读全文

posted @ 2016-11-15 10:25 上善其若水,厚德载物 阅读(322) 评论(0) 推荐(0) 编辑


2016年11月14日

摘要: float有三个值none,left就是靠左,right就是靠右,浮动就是浮动在上一层 如在标签box的范围内紧贴在标签的左边 在一定范围内紧贴在左边或右边 阅读全文

posted @ 2016-11-14 19:38 上善其若水,厚德载物 阅读(112) 评论(0) 推荐(0) 编辑


上一页 1 2 3 4 5 6 7 ··· 29 下一页

Copyright © 2024 上善其若水,厚德载物
Powered by .NET 8.0 on Kubernetes