分离、附加、备份、还原--去重select distinct 列名from表名--更新update fenshu set name = ‘李四’where code = 9--更改表名sp_rename 表名drop database 数据库名(删除数据库)drop table 表名Delete f...
分类:
数据库 时间:
2014-12-15 16:45:26
阅读次数:
243
select DISTINCT human.tid,log_pv_change.systafftid from human left join human_user on human.tid=human_user.hid left join human_house on human.tid = hu...
分类:
其他好文 时间:
2014-12-15 10:14:40
阅读次数:
176
题意:
Follow up for N-Queens problem.
Now, instead outputting board configurations, return the total number of distinct solutions....
分类:
其他好文 时间:
2014-12-15 00:14:20
阅读次数:
252
当数据量非常大,在同一个query中计算多个不相关列的distinct时,往往很容易出现数据倾斜现象,导致运行半天都不能得到结果。比如以下的SQL语句:select distinct(a), distinct(b), distinct(c) from tableName;a, b, c没有相关性。改...
分类:
其他好文 时间:
2014-12-14 10:35:42
阅读次数:
167
项目中要对数据按时间处理,在数据库中,时间处理的格式如2014-12-09 06:30:17时间查询出来如下所示:现在要查询具体有哪天的数据,应用substring函数,SQL如下:select distinct substring(( start_time ) from 1 for 10) as ...
分类:
数据库 时间:
2014-12-13 13:25:42
阅读次数:
222
Given a string, find the length of the longest substring T that contains at most 2 distinct characters.For example, Given s = “eceba”,T is "ece" which...
分类:
其他好文 时间:
2014-12-13 06:07:09
阅读次数:
137
N-Queens IIFollow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.其实比N-Queens更简单,免...
分类:
其他好文 时间:
2014-12-12 11:38:54
阅读次数:
209
测试表:studentselect * from studnet; select count(distinct name) from student;select count(distinct *) from student;
这样是有错误的,可以变通的实现select count(*) from
...
分类:
数据库 时间:
2014-12-11 17:12:12
阅读次数:
158
Given a stringSand a stringT, count the number of distinct subsequences ofTinS.A subsequence of a string is a new string which is formed from the orig...
分类:
其他好文 时间:
2014-12-10 15:51:08
阅读次数:
203
问题:从全国所有气象站点数据气候数据表中(温度,降水量,风速等)找出研究区气象站点及所需气象信息。
解决:
select 台站号 as 台站号,年 as 年,降水量 as 降水量,平均气温 as 年均温 from 站点气候年数据
where 台站号 in (select 台站号 from 研究区站点 ) and
年 in(select distinct(年) from 研究区站点)
gr...
分类:
数据库 时间:
2014-12-10 10:49:47
阅读次数:
228