摘要: Case具有两种格式。分支结构case语句和条件判断case语句。分支结构case语句,类似于switchselect (case user_name when '张三' then 'zhangsan'when '李四' then 'lisi'when '王五1' then 'wangwu'else '找不到对应' end) as afrom ctl_user条件判断case,类似于if else... 阅读全文
posted @ 2010-01-14 16:59 yoolo wu 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 验证数字:^[0-9]*$验证n位的数字:^\d{n}$验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数:^[0-9]+(.[0-9]{1,3})?$验证非零的正整数:^\+?[1-9][0-9]*$验证非零的负整数:^\-[1... 阅读全文
posted @ 2010-01-14 11:38 yoolo wu 阅读(145) 评论(0) 推荐(0) 编辑