首先,创建两个全局的tableview;
@interface TianPinXunLiViewController ()
{
UITableView *leftTableView;
UITableView *rightTableView;
}
@end
其次,实现代理的时候,用对象比对的方法 A isequal B
#pragm...
分类:
其他好文 时间:
2014-06-05 07:14:45
阅读次数:
257
1.select sum(CASE WHEN A.[STATUS]=0 THEN 1 ELSE
0 end) as a1,sum(CASE A.[STATUS] WHEN 1 THEN 1 ELSE 0 end) as a2,sum(CASE
A.[STATUS] WHEN 2 THEN 1 ELS...
分类:
数据库 时间:
2014-06-04 21:10:46
阅读次数:
513
流程控制语句
是指用来控制程序执行和流程分至点额命令,一般指的是逻辑计算部分的控制。
1.Begin End语句
封装了多个T-SQL语句组合,将他们组成一个单元来处理。一般在条件查询或者循环等控制流程语句中,要查询满足特定条件的操作时会用到。Begin……end可以嵌套使用。
语法如下:
begin
--
end
例子
begin...
分类:
数据库 时间:
2014-06-03 05:57:35
阅读次数:
303
select p.id comperitorId,p.compcorp competitorName,
sum(case when c.kindname = 'ATM' then c.num else 0 end) atm,
sum(case when c.kindname = 'CRS' then c.num else 0 end) crs,
sum(case when c.kindname...
分类:
数据库 时间:
2014-06-03 03:12:09
阅读次数:
211
1)一个解决方案中有多个项目时,运行解决方案时执行启动项目
卸载解决方案中的某个项目,不删除程序,只是设定项目“不可用”2)常用快捷键: Home&End:行的最前端与最后端
PgUp&PgDn:上翻页与下翻页 Shift:配合其他键用来选中文本 Ctrl+Home&Ctrl+End:定位...
分类:
其他好文 时间:
2014-05-31 19:35:31
阅读次数:
336
mysql 语句case whenselect USER_ID ,USER_NAME
,CASE WHEN atten.DESTINATION_ID is null THEN FALSE ELSE TRUE END as attentioned
from T_SD_USER as user...
分类:
数据库 时间:
2014-05-31 11:38:49
阅读次数:
313
做的接口中用到日期比较,要返回某段时间内的数据列表。数据表中字段为“end_time”,时间格式为 2014-05-30
13:12:10,想查截止报名时间的数据。select 字段名 from 表 where end_time >当前时间
;mysql数据表中存放时间字段格式date,dateti...
分类:
数据库 时间:
2014-05-31 07:40:05
阅读次数:
556
DescriptionGiven a set of sticks of various
lengths, is it possible to join them end-to-end to form a square?InputThe first
line of input contains N, ...
分类:
其他好文 时间:
2014-05-30 21:21:54
阅读次数:
284
Given a binary tree, find the maximum path
sum.The path may start and end at any node in the tree.For example:Given the
below binary tree, 1 ...
分类:
其他好文 时间:
2014-05-30 16:10:54
阅读次数:
185
class Solution {public: vector > ret; vector
subret;public: vector > fourSum(vector &num, int target) {
sort(num.begin(),num.end()); ...
分类:
其他好文 时间:
2014-05-29 09:31:13
阅读次数:
288