bit
整型bit数据类型是整型,其值只能是0、1或空值。这种数据类型用于存储只有两种可能值的数据,如Yes 或No、True 或False 、On
或Off.注意:很省空间的一种数据类型,如果能够满足需求应该尽量多用。tinyint 整型tinyint 数据类型能存储从0到255 之间的整数。它在...
分类:
数据库 时间:
2014-06-02 22:14:11
阅读次数:
339
【题目】原文:1.3 Design an algorithm and write code
to remove the duplicate characters in a string without using any additional
buffer. NOTE: One or two add...
分类:
其他好文 时间:
2014-06-02 21:32:04
阅读次数:
284
DescriptionA brand-new Japanese puzzle is
coming from the East to strike the world-popular Sudoku game and become an
international hit. The rules of t...
分类:
其他好文 时间:
2014-06-02 20:44:37
阅读次数:
303
By reducing your bookmarks to show only the
icons, you can access more of them from the Bookmarks bar. This works great for
sites with recognizable fa...
分类:
其他好文 时间:
2014-06-02 17:39:03
阅读次数:
276
Maveninstallartifactmvninstall:install-file-DgroupId=gemfire-DartifactId=gemfire-Dversion=6.0.1-Dpackaging=jar-Dfile=F:\gemfire-6.0.1.jarDefineaEnumtypepublicenumUserInfoCacheTypeE{
ACTIVE("ACTIVE"),NOT_ACTIVE("NOTACTIVE");
privateStringdescription;
User..
分类:
其他好文 时间:
2014-06-01 16:43:28
阅读次数:
228
freemarker中的substring取子串
1、substring取子串介绍
(1)表达式?substring(from,to)
(2)当to为空时,默认的是字符串的长度
(3)from是第一个字符的开始索引,to最后一个字符之后的位置索引
2、举例说明
${'EFGHIJKL'?substring(0)}
${'EFG...
分类:
其他好文 时间:
2014-06-01 16:21:31
阅读次数:
178
【题目】
Reverse a linked list from position m to n. Do it in-place and in one-pass.
For example:
Given 1->2->3->4->5->NULL, m = 2 and n = 4,
return 1->4->3->2->5->NULL.
Note:
Given m, n satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.
【题意】
...
分类:
其他好文 时间:
2014-06-01 15:08:34
阅读次数:
237
SELECT * FROM msg_personchat_t WHERE send_userid='28' AND critime>'2014-03-30' AND critime...
分类:
数据库 时间:
2014-06-01 13:56:29
阅读次数:
210
MySQL语法大全_自己整理的学习笔记
select * from emp; #注释
#---------------------------
#----命令行连接MySql---------
#启动mysql服务器
net start mysql
#关闭
net stop mysql
#进入
mysql -h 主机地址 -u 用户名 -p 用户密码...
分类:
数据库 时间:
2014-06-01 13:54:19
阅读次数:
369
Mysql存储过程知识,案例:create procedure delete_setting(in
p_settingid
integer)begin delete from setting where settingid=p_settingid;endselect `name`
from mysq...
分类:
数据库 时间:
2014-06-01 12:19:33
阅读次数:
569