dao类 方法申明 //创建people表 +(BOOL)createTablefriend; //向people表插入一条数据 ,方法带参数,需要将人的名字和年龄传过来 +(BOOL)insertIntofriendW…
标签:id
Oracle sql语句中(+)作用
转自:~永无止境~ select * from operator_info o, group_info g where o.group_id = g.group_id(+); 理解: …
sqlmap用于sql注入语法
(1) 猜解是否能注入 win: (python) sqlmap.py -u http://ctf5.shiyanbar.com/web/index_2.php?id=1 Linux : .lmap.py -u http…
Hive中的各种join
准备数据 1,a 2,b 3,c 4,d 7,y 8,u 2,bb 3,cc 7,yy 9,pp 建表: create table a(id int,name string) row format delimited f…
SQL server查询所有表的行数
select schema_name(t.schema_id) as [Schema], t.name as TableName,i.rows as [RowCount] from sys.tables as t, sy…
Spark实现列转行
1、列转行 行转列和列转行是我们常用的功能,假如我们有如下的csv文件: +---+----+---------+ |id |name|address | +---+----+---------+ |1 |a |add1…
beego使用postgresql查询大写字段
在postgresql中大小写不敏感,大的小的,都会统一转换成小写。 比如: select ID from user select Id from user select id from user 上述三种查询的结果都一…
ManagedSQLiteOpenHelper
kotlin 数据库 anko cursor 建表 package com.example.lostfond2.search object HistoryRecordContract { const val TABLE_…
android sqlite数据库 修改数据
修改数据也需要懂得使用where多条件语句 条件表达式 =,!=,>,<,>=,<= 多条件 and or , and和or都可以无限连接 /** * 方法修改数据库数据 */ public vo…
mongoDB删除重复的数据 去重
最近在工作上遇到需要清理鸡汤文中重复的数据,网上搜了一下,有不少方案,有用程序去重的,有用唯一索引来控制的,感觉都不是很方便,后来发现用下面这个非常方便; db.Passages.aggregate([ { $group…
Hive 差集实现
1. IN query plan 1. NOT IN select * from id_full as a where a.id not in (select id from id_incr where day=2018…
ZooKeeper 简单配置
What is ZooKeeper 由Hadoop项目衍生出来的分布式节点管理工具。 选举机制 简单来说就是超过半数的节点投票,id大的。 单机伪集群的搭建 解压tar包后,修改%ZooKeeperHome%/conf下…