本文整理了Java中com.yahoo.squidb.sql.Query.addCompoundSelect
方法的一些代码示例,展示了Query.addCompoundSelect
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.addCompoundSelect
方法的具体详情如下:
包路径:com.yahoo.squidb.sql.Query
类名称:Query
方法名:addCompoundSelect
暂无
代码示例来源:origin: yahoo/squidb
/**
* Form a compound select with the given query using the UNION operator
*
* @param query a Query object to append with the UNION operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query union(Query query) {
if (immutable) {
return fork().union(query);
}
addCompoundSelect(CompoundSelect.union(query));
return this;
}
代码示例来源:origin: yahoo/squidb
/**
* Form a compound select with the given query using the UNION ALL operator
*
* @param query a Query object to append with the UNION ALL operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query unionAll(Query query) {
if (immutable) {
return fork().unionAll(query);
}
addCompoundSelect(CompoundSelect.unionAll(query));
return this;
}
代码示例来源:origin: yahoo/squidb
/**
* Form a compound select with the given query using the INTERSECT operator
*
* @param query a Query object to append with the INTERSECT operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query intersect(Query query) {
if (immutable) {
return fork().intersect(query);
}
addCompoundSelect(CompoundSelect.intersect(query));
return this;
}
代码示例来源:origin: yahoo/squidb
/**
* Form a compound select with the given query using the EXCEPT operator
*
* @param query a Query object to append with the EXCEPT operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query except(Query query) {
if (immutable) {
return fork().except(query);
}
addCompoundSelect(CompoundSelect.except(query));
return this;
}
代码示例来源:origin: com.yahoo.squidb/squidb
/**
* Form a compound select with the given query using the UNION operator
*
* @param query a Query object to append with the UNION operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query union(Query query) {
if (immutable) {
return fork().union(query);
}
addCompoundSelect(CompoundSelect.union(query));
return this;
}
代码示例来源:origin: com.yahoo.squidb/squidb
/**
* Form a compound select with the given query using the UNION ALL operator
*
* @param query a Query object to append with the UNION ALL operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query unionAll(Query query) {
if (immutable) {
return fork().unionAll(query);
}
addCompoundSelect(CompoundSelect.unionAll(query));
return this;
}
代码示例来源:origin: com.yahoo.squidb/squidb
/**
* Form a compound select with the given query using the INTERSECT operator
*
* @param query a Query object to append with the INTERSECT operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query intersect(Query query) {
if (immutable) {
return fork().intersect(query);
}
addCompoundSelect(CompoundSelect.intersect(query));
return this;
}
代码示例来源:origin: com.yahoo.squidb/squidb
/**
* Form a compound select with the given query using the EXCEPT operator
*
* @param query a Query object to append with the EXCEPT operator
* @return this Query object, to allow chaining method calls
* @see <a href="http://www.sqlite.org/lang_select.html#compound">http://www.sqlite.org/lang_select.html#compound</a>
*/
public Query except(Query query) {
if (immutable) {
return fork().except(query);
}
addCompoundSelect(CompoundSelect.except(query));
return this;
}
内容来源于网络,如有侵权,请联系作者删除!