码迷,mamicode.com
首页 >  
搜索关键字:like    ( 7615个结果
关于避免模糊查询索引时效问题
当 waybill_no 存在索引时 select * from ucmp_waybill_rec_mem r where r.createtm >= trunc(sysdate - 1) and r.type = '2' and r.waybill_no like '033%' 与 select
分类:其他好文   时间:2016-02-01 14:46:56    阅读次数:184
mybatis like的用法
oracle数据库: Java代码 SELECT * FROM user WHERE name like CONCAT('%',#{name},'%') 或 Java代码 SELECT * FROM user WHERE name like '%'||#{name}||'%' SQLServer数据
分类:其他好文   时间:2016-02-01 14:32:10    阅读次数:120
Mod in math
An Introduction to Modular Math When we divide two integers we will have an equation that looks like the following: AB=Q remainder R\dfrac{A}{B} = Q \
分类:其他好文   时间:2016-01-31 13:24:55    阅读次数:269
通过条件的查询----涉及到三层(Action Service DAO)
通过条件的查询 select from Employee e where 1=1 and e.name like ‘%李%’ and e.name like '%王%' order by e.name desc;
分类:其他好文   时间:2016-01-31 09:35:17    阅读次数:170
NC参照查那个表
select * from bd_refinfo where name like '%人员工作记录全职树(行政树)%';select * from bd_refinfo where name like '%人员工作记录%'; select * from bd_refinfo where name l
分类:其他好文   时间:2016-01-30 22:21:30    阅读次数:166
【树】Flatten Binary Tree to Linked List(先序遍历)
题目: Given a binary tree, flatten it to a linked list in-place. For example,Given 1 / \ 2 5 / \ \ 3 4 6 The flattened tree should look like: 1 \ 2 \ 3
分类:其他好文   时间:2016-01-29 20:51:37    阅读次数:215
OpenGL
https://www.opengl.org/resources/libraries/glut/glut_downloads.phpAbout GLUT . . .GLUT (pronounced like the glut in gluttony) is the OpenGL Utility To
分类:其他好文   时间:2016-01-29 00:07:54    阅读次数:174
mac下 mysql 插入中文乱码解决
搞了好几个小时,终于搞定了 乱码根本原因还是编码方式不同造成的,只要编码方式统一就没问题 1. 进入 mysql 命令行, 用 show variables like 'character_set_%'; 查看编码 | character_set_client | utf8 | character_
分类:数据库   时间:2016-01-27 21:12:42    阅读次数:191
Mysql查看编码方式
查看数据库的字符集 show variables like 'character\_set\_%'; 输出: +--------------------------+--------+ | Variable_name | Value | +--------------------------+---
分类:数据库   时间:2016-01-27 19:30:58    阅读次数:287
mysql状态查看 QPS/TPS/缓存命中率查看
运行中的mysql状态查看 对正在运行的mysql进行监控,其中一个方式就是查看mysql运行状态。 (1)QPS(每秒Query量) QPS = Questions(or Queries) / seconds mysql > show global status like 'Question%';
分类:数据库   时间:2016-01-27 17:22:28    阅读次数:178
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!