我想对一个表里面字段a的个数进行进行统计,因为字段a有重复的记录,我想排除重复的记录,该sql语句为:select count(distinct a)
分类:
其他好文 时间:
2014-10-09 17:23:07
阅读次数:
166
??
1 sqlplus登录方式:
普通用户登录:
登录eg:C:\>sqlplusscott/11
(格式:sqlplus
用户名/密码)
退出eg:quit退出
超级用户登录
C:\>sqlplus/nolog
S...
分类:
数据库 时间:
2014-10-09 14:57:04
阅读次数:
441
1.使用case when方法(不建议使用)-代码如下复制代码SELECT COUNT(DISTINCT user_id) user_count, CASE WHEN create_time>1395046800 AND create_time1395050400 AND create_time13...
分类:
数据库 时间:
2014-10-09 00:59:57
阅读次数:
273
[leetccode]You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?...
分类:
其他好文 时间:
2014-10-08 11:29:55
阅读次数:
193
原题地址:https://oj.leetcode.com/problems/distinct-subsequences/题意:Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subseq...
分类:
编程语言 时间:
2014-10-08 00:56:04
阅读次数:
262
初看好简单 一开始调试着一直re 后来也不知道怎么就对了 但是还有一些bug存在 ,
这道题的打印路径和light oj An Easy LCS(ps:点击打开链接)一样
但是只改一下会Tle 因为(1000*1000*1000)好大
但是把存储的字符串改为string 定义的就过了
但是还是有一点有点难受(下面会说出)
我也是醉了
#include
#include...
分类:
其他好文 时间:
2014-10-07 02:36:42
阅读次数:
405
最长上升子序列LIS问题属于动态规划的初级问题,用纯动态规划的方法来求解的时间复杂度是O(n^2)。但是如果加上二叉搜索的方法,那么时间复杂度可以降到nlog(n)。 具体分析参考:http://blog.chinaunix.net/uid-26548237-id-3757779.html 代...
分类:
其他好文 时间:
2014-10-05 22:41:09
阅读次数:
194
select distinct StuNum,Name,Sex from Students
分类:
数据库 时间:
2014-10-05 13:36:08
阅读次数:
141
Additive equations
Time Limit: 10 Seconds Memory Limit: 32768 KB
We all understand that an integer set is a collection of distinct integers. Now the question is: given an integer set, c...
分类:
其他好文 时间:
2014-10-04 19:29:37
阅读次数:
270
Given a set of distinct integers, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets.
For example,
I...
分类:
其他好文 时间:
2014-10-03 22:24:55
阅读次数:
273