com.ivanceras.db.api.Combine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
package com.ivanceras.db.api;
public class Combine {
public static String UNION = "UNION";
public static String INTERSECT = "INTERSECT";
public static String EXCEPT = "EXCEPT";
public static String ALL = "ALL";
}