mysql -h10.81.32.196 -P5152 -Dns_map_data_new
-uwangyuchuan_r -p3DLg15rhSsm0O7Nsselect uid,name from t_area_info where
uid=1960;
分类:
其他好文 时间:
2014-05-08 12:00:24
阅读次数:
247
select * from smt_RolePermissiondelete from
smt_RolePermissiondelete from smt_RolePermission where ModuleId NOT
IN(105,110,111,112,113,73)insert into ...
分类:
其他好文 时间:
2014-05-08 09:59:13
阅读次数:
237
在进行数据库查询时,有完整查询和模糊查询之分。SELECT 字段 FROM 表 WHERE
某字段 Like 条件其中关于条件,SQL提供了四种匹配模式:
1,%:表示任意0个或多个字符。可匹配任意类型和长度的字符,有些情况下若是中文,请使用两个百分号(%%)表示。 比如 ...
分类:
其他好文 时间:
2014-05-08 09:41:36
阅读次数:
325
Given a sorted array and a target value, return
the index if the target is found. If not, return the index where it would be if
it were inserted in or...
分类:
其他好文 时间:
2014-05-08 07:29:02
阅读次数:
285
hive 中的union all是不能在sql语句的第一层使用的,否则会报Top level
UNION is not supported currently 错误;例如如下的方式:select id,name from user where type
= 1union allselect id,n...
分类:
其他好文 时间:
2014-05-08 07:17:42
阅读次数:
420
玩了一段时间zabbix,对他的数据库有点研究,在这里分享下添加一个监控的过程,希望能帮到路过的朋友。添加一个监控项目(不包括添加模板)涉及到几个表,分别是:ids,hosts,applications,groups,hosts_groups,interface,items,items_applications,如果还需要添加触发器的话还..
分类:
数据库 时间:
2014-05-08 02:32:26
阅读次数:
1060
Given an array where elements are sorted in
ascending order, convert it to a height balanced BST./** * Definition for binary
tree * public class TreeN...
分类:
其他好文 时间:
2014-05-08 00:51:46
阅读次数:
430
分页语句:
Oracle:
--这种分页查询方式不仅仅是针对单表的简单查询,对于最内层查询是复杂的
--多表联合查询或最内层查询包含排序的情况一样有效
SELECT * FROM (
SELECT ROWNUM RN , T.* FROM
(SELECT * FROM FTNEMR.PATIENT_VISIT) T WHERE ROWNUM 40 )
WHERE RN >...
分类:
数据库 时间:
2014-05-07 22:47:41
阅读次数:
601
Explain的type显示的是访问类型,是较为重要的一个指标,结果值从好到坏依次是:system
> const > eq_ref > ref > fulltext > ref_or_null > index_merge
> unique_subquery > index_subquery > r...
分类:
其他好文 时间:
2014-05-07 21:26:56
阅读次数:
282
内容来源:http://blog.csdn.net/azhao_dn/article/details/6921429在hive上执行查询:select
count(*) from user_active_vv_20110801_31 where active_type_3>0 UNION ALL s...
分类:
其他好文 时间:
2014-05-07 20:26:30
阅读次数:
460