今天碰到了 select * from table1 t where t.name like '模块a'查不出数据而select * from table1 t where t.name like 'a'却可以 所以想到应该是数据库字符集编码问题在系统变量里 添加NLS_LANGAMERICAN_A...
分类:
数据库 时间:
2015-08-26 15:24:01
阅读次数:
142
LianLianKan
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 3292 Accepted Submission(s): 996
Problem Description
I like playing ...
分类:
其他好文 时间:
2015-08-26 12:07:53
阅读次数:
198
SQL语句为:select * from table1 where `text` like CONCAT('%',(select name from table2 where id =3),'%');UPDATE ecs_region a,nation b SET a.code = b.code ....
分类:
数据库 时间:
2015-08-26 08:15:36
阅读次数:
902
总结;count(*)查找数量limit 10限制数量为10个order by year 根据year排序like 'sta%' 查找开头为sta的字符串desc 降序排序1,有时候我们只想知道1985年以后的电影有几部: selectcount(*)fromfilmwhereyear>=19...
分类:
数据库 时间:
2015-08-25 23:15:29
阅读次数:
208
Arcane Numbers 1Time Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 4320DescriptionVance and Shackler like playi...
分类:
其他好文 时间:
2015-08-25 23:08:39
阅读次数:
161
c# 操作Word总结 在医疗管理系统中为保存患者的体检和治疗记录,方便以后的医生或其他人查看。当把数据保存到数据库中,需要新建很多的字段,而且操作很繁琐,于是想到网页的信息创建到一个word文本中,在显示的时,可以在线打开word,也可以把word转换成html标签显示。 这样使用word代替网....
分类:
Web程序 时间:
2015-08-25 18:37:19
阅读次数:
189
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:3 + ...
分类:
编程语言 时间:
2015-08-25 16:31:53
阅读次数:
153
1、查看MySQL运行多长时间mysql> SHOW GLOBAL STATUS LIKE 'UPTIME';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 12823 |
+---------------+-------+
1 row in set (...
分类:
数据库 时间:
2015-08-25 14:20:04
阅读次数:
178
DescriptionBessie has gone to the mall's jewelry store and spies a charm bracelet. Of course, she'd like to fill it with the best charms possible from...
分类:
其他好文 时间:
2015-08-25 14:10:14
阅读次数:
113
Another topological sorting problem. Note: the DFS one is like a 'post-order' traversal.class Solution { unordered_map> g; unordered_set visited...
分类:
其他好文 时间:
2015-08-25 14:10:04
阅读次数:
189