码迷,mamicode.com
首页 >  
搜索关键字:mybatis where    ( 33957个结果
WPF获取控件内部的ScrollViewer,并控制ScrollViewer操作
//获取内部 ScrollViewer方法public static T FindVisualChild(DependencyObject obj) where T : DependencyObject { if (obj != null) { for (int i = 0; i (child); ...
分类:其他好文   时间:2014-05-17 13:09:33    阅读次数:275
Hibernate简介
1.什么是Hibernate? 首先,Hibernate是数据持久层的一个轻量级框架。数据持久层的框架有很多比如:iBATIS,myBatis,Nhibernate,Siena等等。 并且Hibernate是一个开源的orm(object relations mapping)框架,提供了查询获取数据...
分类:系统相关   时间:2014-05-16 20:26:23    阅读次数:349
【LeetCode】Container With Most Water
Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ...
分类:其他好文   时间:2014-05-16 19:42:17    阅读次数:286
相同表的创建
create table OA_WF_NODETEMP as select * from oa_wf_node where 1=2
分类:其他好文   时间:2014-05-16 18:55:53    阅读次数:202
oracle 查某一列有重复值的记录
-- 查找重复记录select names,num from test where rowid != (select max(rowid) from test b where b.names = test.names and b.num = test.num)或者使用select names,n.....
分类:数据库   时间:2014-05-16 18:51:53    阅读次数:278
mybatis 模糊查询
mybatis 模糊查询
分类:其他好文   时间:2014-05-16 08:34:29    阅读次数:217
MySQL数据库 -U
在mysql命令加上选项-U后,当发出没有WHERE或LIMIT关键字的UPDATE或DELETE时,mysql程序就会拒绝执行
分类:数据库   时间:2014-05-16 07:17:19    阅读次数:255
数据库中对重复数据行的查询删除操作
oracle中对重复数据的查询和删除操作--1.查询表中username=‘lingjie’的重复记录select userid,username from nmb where username in(select username from nmb group by username having...
分类:数据库   时间:2014-05-16 06:59:01    阅读次数:266
HDU2879 HeHe 数论积性函数
题目名字有点搓,做题时没做出来,学长他们做出了,发现跟网上题解的思路没太大区别,网上所有题解的分析也都转自同一个地方,看样子这道题目不是那么好想的,没办法按照解析画了半天,计算器按了半天,理解了,自己敲出来了,觉得值得留念,打算再刷几道这样的 hdu 2879 HeHe 题意:In the equation X^2≡X(mod N) where x∈[0,N-1], we...
分类:其他好文   时间:2014-05-13 15:59:20    阅读次数:357
MySQL命令学习(二)
(13)where字句操作符 =            等于 !=           不等于 >            大于 >=          大于等于 BETWEEN          在指定的两个值之间 例如: 找出学号是0007到0009之间的学生记录(不包括0009)? SELECT* FROM student_info WHERE stu_id B...
分类:数据库   时间:2014-05-13 13:27:33    阅读次数:368
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!