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

io.odysz.transact.sql.parts.select.Havings Maven / Gradle / Ivy

The newest version!
package io.odysz.transact.sql.parts.select;

import java.util.stream.Collectors;
import java.util.stream.Stream;

import io.odysz.semantics.ISemantext;
import io.odysz.transact.sql.parts.AbsPart;
import io.odysz.transact.sql.parts.condition.Condit;
import io.odysz.transact.x.TransException;

public class Havings extends AbsPart {

	private Condit condits;

	public Havings(Condit havings) {
		condits = havings;
	}

	@Override
	public String sql(ISemantext sctx) throws TransException {
		return Stream.of("having", condits.sql(sctx))
				.collect(Collectors.joining(" "));
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy