xyz.erupt.jpa.constant.SqlLang Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erupt-jpa Show documentation
Show all versions of erupt-jpa Show documentation
EruptProcess database impl
The newest version!
package xyz.erupt.jpa.constant;
/**
* @author YuePeng
* date 2024/3/31 22:28
*/
public class SqlLang {
public static final String SELECT = "select ";
public static final String COMMA = ",";
public static final String AS = " as ";
public static final String FROM = " from ";
public static final String WHERE = " where ";
public static final String AND = " and ";
public static final String ORDER_BY = " order by ";
}