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....
form:HTML4中,表单内的从属元素必须书写在之内,但是在HTML5中,表单的从属元素可以处于页面的任何位置,然后为其添加form属性,属性值为form表单的id属性值即可,表单form与从属元素的从属关系依然有效,like this: formaction:在HTML5中,可以为每个form....
分类:
Web程序 时间:
2015-12-24 23:49:06
阅读次数:
225
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
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
坚持学习英语,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设置成不区分大小写在my.cof 设置 lower_case_table_names=1(1忽略大小写,0区分大小写)检查方式:在mysql控制台中输入如下命令show variables like 'lower%';linux下查找...
分类:
数据库 时间:
2015-12-22 19:26:34
阅读次数:
222
语法如下:SELECT * FROM 表名WHERE regexp_like(表字段,'正则') 例如:查找某字段小数点后有两个小数以上的信息SELECT * FROM A TWHERE regexp_like(T.FILE,'\d+.\d{2,}')结果如图
分类:
数据库 时间:
2015-12-22 16:05:02
阅读次数:
185
题目描述: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
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
奇数行和偶数行合并为一行:Like:Sequence number: 5398Sequence name: Glyma.16G123500.1Sequence number: 5399Sequence name: Glyma.16G169500.1Sequence number: 5400Seque...
分类:
其他好文 时间:
2015-12-22 06:30:41
阅读次数:
214