SqlBuilder is Java librairie who enables you to simply create with a elegant way a Sql query
SqlBuilder.select("nom", "prenom")
.from("users")
.where("nom = Jean")
.where("prenom = Pierre")
.orderBy("nom", OrderByCommand.Order.ASC)
.limit(5)
.build()