All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.ec.sql.BeforeWith Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package de.ec.sql;

public interface BeforeWith extends QueryPart {

	default With with(final String name) {
		return new With(this, name);
	}

	default With with(final With with) {
		return with.builder(this);
	}

	default With withSQL(final String sql) {
		return with((String) null).sql(sql);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy