existencetest.java
来自「一个开源的基于java开发的数据库」· Java 代码 · 共 28 行
JAVA
28 行
package sql4j.parser;
/**
* Insert the type's description here.
* Creation date: (10/30/00 9:46:23 PM)
* @author: Jianguo Lu
*/
import sql4j.schema.*;
/**
* Atomic where condition, that has no logic connectors like AND, OR.
* Creation date: (10/30/00 9:46:23 PM)
* @author Jianguo Lu
*/
public class ExistenceTest extends AtomicWhereCondition{
/**
* ExistenceTest constructor comment.
*/
public ExistenceTest() {
super();
}
public ExistenceTest(SelectStatement s){
stmt=s;
}
public String toString(){
return "EXISTS "+stmt.toString();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?