码迷,mamicode.com
首页 >  
搜索关键字:like    ( 7615个结果
Firebug 调试技巧之console API
console.log(object[, object, ...]) Writes a message to the console. You may pass as many arguments as you'd like, and they will be joined together in....
分类:Windows程序   时间:2015-12-25 19:04:01    阅读次数:282
HTML5的form表单属性
form:HTML4中,表单内的从属元素必须书写在之内,但是在HTML5中,表单的从属元素可以处于页面的任何位置,然后为其添加form属性,属性值为form表单的id属性值即可,表单form与从属元素的从属关系依然有效,like this: formaction:在HTML5中,可以为每个form....
分类:Web程序   时间:2015-12-24 23:49:06    阅读次数:225
远程链接mysql数据库
mysql -h192.168.1.27 -P3306 -uroot -proot显示最大连接数show variables like '%max_connections%';设置最大链接数set global max_connections=2000;//默认100--只对当前进程有效,服务重启还...
分类:数据库   时间:2015-12-24 16:28:33    阅读次数:169
PLSQL NOTE --------like 与转义字符
SQL> create table test 2 (id integer, 3 name varchar2(90));Table created.SQL> insert into test values(100,'aassdd');1 row created.SQL> insert into...
分类:数据库   时间:2015-12-23 10:42:17    阅读次数:215
[2015-12-23]OMG美语每日笔记-Which type of american movies do you like to watch most?
坚持学习英语,OMG口语非常长不错,坚持每天整理.学英语坚持最重要,学英语坚持最重要,学英语坚持最重要说三遍! My favorite type of movie is a Rom Com.Rom Com stands for Rormantic Comedy .Like Legally Blon....
分类:其他好文   时间:2015-12-23 08:11:30    阅读次数:186
linux 下配置mysql区分大小写(不区分可能出现找不到表的情况)怎么样使用yum来安装mysql
Linux 默认情况下,数据库是区分大小写的;因此,要将mysql设置成不区分大小写在my.cof 设置 lower_case_table_names=1(1忽略大小写,0区分大小写)检查方式:在mysql控制台中输入如下命令show variables like 'lower%';linux下查找...
分类:数据库   时间:2015-12-22 19:26:34    阅读次数:222
oracle根据正则表达式查找对应的字段
语法如下:SELECT * FROM 表名WHERE regexp_like(表字段,'正则') 例如:查找某字段小数点后有两个小数以上的信息SELECT * FROM A TWHERE regexp_like(T.FILE,'\d+.\d{2,}')结果如图
分类:数据库   时间:2015-12-22 16:05:02    阅读次数:185
Java [Leetcode 258]Add Digits
题目描述:Given a non-negative integernum, repeatedly add all its digits until the result has only one digit.For example:Givennum = 38, the process is like...
分类:编程语言   时间:2015-12-22 10:26:00    阅读次数:141
使用通配符来解决数据1和11、12/13/14的问题
update FOURxiaozhang set President23_1 = '1' WHERE President23 like '1|%';update FOURxiaozhang set President23_1 = '1' WHERE President23 = '1';upda...
分类:其他好文   时间:2015-12-22 10:17:15    阅读次数:146
sed 集合(项目中的笔记)
奇数行和偶数行合并为一行:Like:Sequence number: 5398Sequence name: Glyma.16G123500.1Sequence number: 5399Sequence name: Glyma.16G169500.1Sequence number: 5400Seque...
分类:其他好文   时间:2015-12-22 06:30:41    阅读次数:214
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!