摘要:
create table t1 ( id int,[names] varchar(100)) create table t2( id int,[names] varchar(100)) insert into t1 values(1,'t1');insert into t1 values(2,'t2 阅读全文
摘要:
T-SQL with as 的用法(转)一.WITH AS的含义 WITH AS短语,也叫做子查询部分(subquery factoring),可以让你做很多事情,定义一个SQL片断,该SQL片断会被整个SQL语句所用到。有的时候,是为了让SQL语句的可读性更高些,也有可能是在UNION ALL的不 阅读全文
摘要:
byte[] bb="hello".getBytes("gb2312");System.out.println("bb.length:::"+bb.length);for(byte bb1:bb)System.out.println((char)bb1);运行代码得到如下结果:bb.length:: 阅读全文
摘要:
在线字符串长度计算 http://www.txttool.com/wenben_count.asp 阅读全文
摘要:
http://tools.jb51.net/table/gb2312 GB2312简体中文编码表 GB2312标准共收录6763个汉字,其中一级汉字3755个,二级汉字3008个;同时,GB 2312收录了包括拉丁字母、希腊字母、日文平假名及片假名字母、俄语西里尔字母在内的682个全角字符。整个字符 阅读全文