Delete delete = QueryBuilder.delete()
.from("addresbook", "contact")
.where(eq("username", "dgarcia"));
what is the type of "eq" in where clause
Delete delete = QueryBuilder.delete()
.from("addresbook", "contact")
.where(eq("username", "dgarcia"));
what is the type of "eq" in where clause
import static com.datastax.driver.core.querybuilder.QueryBuilder.eq;
Cheers, Carlo