会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
tongyongliang
hiahia
博客园
首页
新随笔
管理
上一页
1
2
3
4
5
6
下一页
2018年7月2日
windows下安装python
摘要: "下载地址" Downloads windows Windows x86 64 web based installer(任意一个版本) 安装 验证时候安装成功 如果环境变量不正常手动添加环境变量
阅读全文
posted @ 2018-07-02 14:36 tongyongliang
阅读(1495)
评论(0)
推荐(0)
2017年11月7日
trunc与round
摘要: TRUNC(number[,num_digits]) number 需要截尾取整的数字。 num_digits 用于指定取整精度的数字。Num_digits 的默认值为 0。 作用:截断数字和时间 注意 TRUNC()函数截取时不进行四舍五入 只能作用时间和数字 测试: 作用于时间 select t
阅读全文
posted @ 2017-11-07 18:03 tongyongliang
阅读(264)
评论(0)
推荐(0)
distinct
摘要: oracle sql 作用: 返回不重复的值 规则: 必须放在开头 测试: -- 这样一个表 select * from reglike; -- 作用于单列 可以去重 select DISTINCT name from reglike ; -- 作用于多列 发现并没有去重点aaa11 select
阅读全文
posted @ 2017-11-07 17:19 tongyongliang
阅读(247)
评论(0)
推荐(0)
NVL与NVL2
摘要: 一、NVL函数是一个空值转换函数 NVL(表达式1,表达式2) 如果表达式1为空值,NVL返回值为表达式2的值,否则返回表达式1的值。 该函数的目的是把一个空值(null)转换成一个实际的值。其表达式的值可以是数字型、字符型和日期型。但是表达式1和表达式2的数据类型必须为同一个类型。 select
阅读全文
posted @ 2017-11-07 16:49 tongyongliang
阅读(976)
评论(0)
推荐(0)
decode与case when
摘要: 语法 decode(条件,值1,返回值1,值2,返回值2,...值n,返回值n,缺省值) select * from reglike; select decode(substr(name,1,3),'aaa','yes','no') decode from reglike; 语法 case when
阅读全文
posted @ 2017-11-07 16:39 tongyongliang
阅读(312)
评论(0)
推荐(1)
REGEXP_LIKE,REGEXP_INSTR,REGEXP_SUBSTR,REGEXP_REPLACE
摘要: 参考: http://www.cnblogs.com/scottckt/archive/2012/10/11/2719562.html http://www.jb51.net/article/38426.htm -- 创建表 create table REGLIKE ( id NUMBER(3),
阅读全文
posted @ 2017-11-07 16:17 tongyongliang
阅读(376)
评论(0)
推荐(0)
正则表达式学习笔记
摘要: 参考: http://www.runoob.com/regexp/regexp-tutorial.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <
阅读全文
posted @ 2017-11-07 16:08 tongyongliang
阅读(168)
评论(0)
推荐(0)
2017年10月29日
旋转的播放按钮
摘要: ``` Document ```
阅读全文
posted @ 2017-10-29 20:16 tongyongliang
阅读(204)
评论(0)
推荐(0)
2017年9月30日
折叠table中的tr
摘要: code effects
阅读全文
posted @ 2017-09-30 16:56 tongyongliang
阅读(487)
评论(0)
推荐(0)
2017年9月27日
css选择器.md
摘要: css选择器总结 1、元素选择器 如: {},body{},p{} ; xml中note{},to{},from{} 2、class与id选择器 如:.class{}, id{} 3、伪类选择器 |选择器|示例|示例说明| | | | | |:link|a:link|选择所有未访问链接| |:vis
阅读全文
posted @ 2017-09-27 09:50 tongyongliang
阅读(548)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
下一页
公告