Skip to content

Commit

Permalink
progress
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Apr 16, 2024
1 parent 1d93527 commit e773e49
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 185 deletions.
81 changes: 0 additions & 81 deletions src/main/java/typewriter/query/Query.java

This file was deleted.

6 changes: 6 additions & 0 deletions src/main/java/typewriter/rdb/SQL.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,12 @@ public SQL<M> orderBy(Specifier<M, ?> specifier1, boolean ascending1, Specifier<
return this;
}

public SQL<M> groupBy(String group) {
text.append(" GROUP BY ").append(group);

return this;
}

/**
* Write SELECT statement.
*
Expand Down
104 changes: 0 additions & 104 deletions src/test/java/typewriter/query/QueryTest.java

This file was deleted.

0 comments on commit e773e49

Please sign in to comment.