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

sql.default.insertSelectStatement.vm Maven / Gradle / Ivy

## $stat  : com.squid.core.sql2.statement.InsertStatement
## $skin : com.squid.core.sql2.render.SQLSkin
##
##-- Template: default SQL ANSI, V2.0

INSERT INTO $stat.InsertIntoTable.render($skin)
#if ($stat.hasInsertIntoColumns())
(
#foreach ($expr in $stat.InsertIntoColumns) 
	#if ($velocityCount>1),
	#end
	$expr.render($skin)
#end
)
#end
VALUES
$stat.Value.render($skin)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy