1.条件运算符2.$all 匹配所有3.$exists 判断字段是否存在4.NUll 值处理5.$mod 取模处理6.$ne 不等于7. $in 包含,与sql用法相同8. $nin 不包含,与sql用法相同9.$size 数组个数10.正则表达式11.$where 查询12.javascript ...
分类:
数据库 时间:
2014-07-22 22:56:54
阅读次数:
294
1.多数据库设置select 0 - 15 ,代表16个数据库2.glob风格通配符set bar 1set btt 2keys * 返回所有keys ba? 返回 barkeys b[a-z][a-z] 返回btt bar\x 匹配转义字符3.判断一个键是否存在exists bar ,存在返回1否...
分类:
其他好文 时间:
2014-07-19 19:24:39
阅读次数:
247
oracle impdp的table_exists_action详解分类:[oracle]--[备份与恢复]2012-01-06 22:449105人阅读评论(0)收藏举报tableactionoracleschemaobjectimport1 table_exists_action参数说明使用im...
分类:
数据库 时间:
2014-07-19 19:06:47
阅读次数:
381
Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "adjace...
分类:
其他好文 时间:
2014-07-18 17:21:54
阅读次数:
293
Factovisors
The factorial function, n! is defined thus for n a non-negative integer:
0! = 1
n! = n * (n-1)! (n > 0)
We say that a divides b if there exists an integer k such that
k*a =...
分类:
其他好文 时间:
2014-07-17 19:05:06
阅读次数:
235
在backstage.jsp页面中我写了一个方法,用于在指定位置添加面板(id为msg的地方)function addTab(t,h){ if($('#msg').tabs('exists',t)){ $('#msg').tabs('select',t); }else{ $('#msg').ta.....
分类:
其他好文 时间:
2014-07-16 19:01:22
阅读次数:
240
Word SearchGiven a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, wh...
分类:
其他好文 时间:
2014-07-16 18:17:13
阅读次数:
208
1. 设 $f(\al,\beta)$ 为线性空间 $V$ 上的非退化双线性函数, 试证: $$\bex \forall\ g\in V^*,\ \exists\ |\ \al\in V,\st f(\al,\beta)=g(\beta),\quad \forall\ \beta\in V. \ee...
分类:
其他好文 时间:
2014-07-16 16:55:49
阅读次数:
569
文件夹如果有文件时,不可以直接删除。要先把里面的文件删完后才可以删文件夹。 public void deleteFile(File file) { if (file.exists()) {// 判断文件是否存在 if (file.isFile()) {// 判断是...
分类:
其他好文 时间:
2014-07-15 00:53:59
阅读次数:
167
File类的常用静态方法:void AppendAllText(string path, string contents),将文本contents附加到文件path中bool Exists(string path)判断文件path是否存在string ReadAllText(string path)...
分类:
其他好文 时间:
2014-07-14 20:19:03
阅读次数:
279