码迷,mamicode.com
首页 >  
搜索关键字:egexp like    ( 7616个结果
Javascript判断是否是ipad的浏览器
ipad用的是Safari Mobile浏览器,访问的UA为:Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7...
分类:编程语言   时间:2014-05-26 10:00:50    阅读次数:351
回顾与知新
1.content like “你%”表示以你开头的所有content content like “你_”表示以你开头的两个字2.where表示在分组前过滤 having表示在分组后过滤3.文档注释 /** */4.sort(降序)值排序,不会保存键 rsort(升序)值排序,不会保存键 assor...
分类:其他好文   时间:2014-05-26 01:46:30    阅读次数:227
hdu 2586 How far away ?
DescriptionThere are n houses in the village and some bidirectional roads connecting them. Every day peole always like to ask like this "How far is it...
分类:其他好文   时间:2014-05-25 22:47:22    阅读次数:283
LightOJ-1205 - Palindromic Numbers
A palindromic number or numeral palindrome is a 'symmetrical' number like 16461 that remains the same when its digits are reversed. In this problem you will be given two integers i j, you have to find...
分类:其他好文   时间:2014-05-25 07:41:08    阅读次数:253
看个人思路吧,清晰的话就简单 CodeForces 271A - Beautiful Year
It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the f...
分类:其他好文   时间:2014-05-24 21:52:34    阅读次数:320
mysql基础操作、sql技巧和sql的常见优化
一、常见操作 1、复制表结构create table t2 like t1    复制表数据insert into t2 select * from t1 2、mysql索引    alter table用来创建普通索引、unique索引或primary key索引    alter table t add index index_name(column_list)    al...
分类:数据库   时间:2014-05-24 14:43:02    阅读次数:363
[LeetCode] [Palindrome Number 2012-01-04]
Determine whether an integer is a palindrome. Do this without extra space.if use recursive, like check the first dig and last dig, then remove them, c...
分类:其他好文   时间:2014-05-23 02:45:15    阅读次数:230
SqlServer之like、charindex、patindex(转载)
SqlServer之like、charindex、patindex1、环境介绍测试环境 SQL2005测试数据 200W条2、环境准备2.1建表CREATE TABLE [dbo].[Depratments]( [Dep_id] [int] NOT NULL, [Dep_name] [v...
分类:数据库   时间:2014-05-21 21:36:23    阅读次数:454
Fiddler Post Debug
1. Post: http://localhost:11804/My/Commentfor plain html parameter submission, like the GET in URL:Request Header:User-Agent: FiddlerContent-Length: 3...
分类:其他好文   时间:2014-05-21 20:54:49    阅读次数:346
SQL 检索所有存储过程中是否包含某字符
--将text替换成你要查找的内容 select name from sysobjects o, syscomments s where o.id = s.id and text like '%text%' and o.xtype = 'P' --将text替换成你要查找的内容 SELECT ROUTINE_NAME, ROUTINE_DEFINITION FROM INFO...
分类:数据库   时间:2014-05-21 14:50:04    阅读次数:373
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!