This is the delete clause of the delete statement.
A DELETE statement provides bulk operations over sets of entities of a single entity class (together with its subclasses, if any). Only one entity abstract schema type may be specified in the UPDATE clause.
BNF: delete_clause ::= DELETE FROM abstract_schema_name [[AS] identification_variable]
Example: DELETE FROM Employee e
@version 2.4.2
@since 2.3
@author Pascal Filion
org.neo4j.cypherdsl.query.clause.DeleteClause
CREATE clause
| }
@Override
public ForEachStatement delete( Iterable<ReferenceExpression> expressions )
{
return new ForEachStatement( forEachClause.add( new DeleteClause( expressions ) ) );
}
|
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact
coftware#gmail.com.