链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=203
Description:
We all remember that in the movie Swordfish, Gabriel broke into the World Bank Investors Group in West Los Angeles, to...
分类:
其他好文 时间:
2014-05-10 09:11:52
阅读次数:
343
针对oracle数据查询的数据,行转列1.wm_concat函数:例一:select
c1,c2,wm_concat(c3) from T where.... group by c1,c2查询结果自动用“,”分割例二:select
c1,c2,wm_concat(c3)over(partition ...
分类:
数据库 时间:
2014-05-10 02:10:46
阅读次数:
430
前几天在博客园上看到一道SQL面试题,sc是表名。老师拿来与同学分享,让大家试做,要求是:查出每科成绩都>=80分的名字,看能写出几种方法。没有主外键,没有关联,脑袋一下子就蒙了。经老师讲解指导的两种方式:第一种:select
name from sc group by name having MI...
分类:
数据库 时间:
2014-05-09 17:48:25
阅读次数:
314
处理Sharepoint中的SPListItem时,有时需要获得这个对象的"Created
By"(创建者),并且希望是SPUser类型,而不是string,这样可以进而得到该用户的权限、ID等等。 "Person or
Group"(用户或组)对应的类型是SPFieldUser,怎么把SPFiel...
分类:
其他好文 时间:
2014-05-07 10:13:36
阅读次数:
324
Link:http://oj.leetcode.com/problems/reverse-nodes-in-k-group/Given a linked
list, reverse the nodes of a linked listkat a time and return its modifie...
分类:
其他好文 时间:
2014-05-05 22:46:42
阅读次数:
456
可以通过数据字典查找type group:ICON,通过ICON
NAME寻找对应的ID列,可以用程序RSTXICON来查看SAP中所有图标和代码的对应关系列表,每个图标都有一个两位长度的代码进行标识,在字符前面加‘@’符号表示对该图标的进行引用。
分类:
其他好文 时间:
2014-05-05 12:49:50
阅读次数:
247
题目:Given an array of strings, return all groups of
strings that are anagrams.Note: All inputs will be in lower-case.class Solution
{public: vector ...
分类:
其他好文 时间:
2014-05-04 20:48:08
阅读次数:
608
oracle group by rollup decode grouping nvl等判断或者小计合计心得...
分类:
数据库 时间:
2014-05-04 09:47:18
阅读次数:
990
使用工具:
FineReport报表设计器,Access数据库
需求描述:
有两张表,订单表和订单明细表
1、订单表结构:
2、订单明细表结构:
目的:根据这两张表做出下面的一张表
分析:
1、因为在订单明细里订单ID可能出现多次,所以一定要先把订单ID去重,否则两张表join的时候,订单ID就会有重复的,这时用count函数求订单数量时就会出错了
所以先...
分类:
数据库 时间:
2014-05-04 09:26:59
阅读次数:
999
1、能用DISTINCT的就不用GROUP BY
SELECT OrderID FROM Details WHERE UnitPrice > 10 GROUP BY OrderID
可改为: SELECT DISTINCT OrderID FROM Details WHERE UnitPrice > 10
2.能用UNION ALL就不要用UNION
UNION A...
分类:
数据库 时间:
2014-05-03 21:31:24
阅读次数:
342