mirror of
https://github.com/russ-p/sqlbuilder.git
synced 2026-08-05 01:17:43 +00:00
00c72a9cfe8107cebec86bc3b6c996a9de6fd2e7
Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. - [Release notes](https://github.com/junit-team/junit4/releases) - [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md) - [Commits](https://github.com/junit-team/junit4/compare/r4.12...r4.13.1) Signed-off-by: dependabot[bot] <support@github.com>
sqlbuilder
simple sql builder
From
String sql = Sql.select()
.column("id").as("col_id")
.column("code").as("col_code")
.from("test_table")
.where("id = 1")
.groupBy("id")
.orderBy("id").by("code").desc()
.toString();
to
SELECT
id AS col_id,
code AS col_code
FROM
test_table
WHERE
id = 1
GROUP BY
id
ORDER BY id, code DESC
Languages
Java
100%