解决眼瞎没加注解问题#172
Open
DieselNiu wants to merge 1 commit into
Open
Conversation
DieselNiu
commented
Jan 30, 2021
Contributor
- 这个PR解答了当前仓库中的题目(机器人会自动判题并合并当前PR)
- 这个PR修复了当前仓库中的一些代码缺陷(机器人不会判题,而是由管理员来处理当前PR)
hcsp-bot
reviewed
Jan 30, 2021
| return null; | ||
|
|
||
| List<GoodsAndGmv> result = new ArrayList<>(); | ||
| String sql = "select GOODS_ID,GOODS.NAME as NAME, SUM(GOODS_PRICE*GOODS_NUM) as GMV\n" + |
|
|
||
| List<GoodsAndGmv> result = new ArrayList<>(); | ||
| String sql = "select GOODS_ID,GOODS.NAME as NAME, SUM(GOODS_PRICE*GOODS_NUM) as GMV\n" + | ||
| "from \"ORDER\" join GOODS on \"ORDER\".GOODS_ID= GOODS.ID\n" + |
| return null; | ||
|
|
||
| List<Order> result = new ArrayList<>(); | ||
| String sql = "select \"ORDER\".ID,USER.NAME as USER_NAME,GOODS.NAME AS GOODS_NAME,GOODS_PRICE*GOODS_NUM as TOTAL_PRICE from \"ORDER\"\n" + |
|
|
||
| List<Order> result = new ArrayList<>(); | ||
| String sql = "select \"ORDER\".ID,USER.NAME as USER_NAME,GOODS.NAME AS GOODS_NAME,GOODS_PRICE*GOODS_NUM as TOTAL_PRICE from \"ORDER\"\n" + | ||
| "inner join USER on \"ORDER\".USER_ID = USER.ID\n" + |
| public static List<Order> getLeftJoinOrders(Connection databaseConnection) throws SQLException { | ||
| return null; | ||
| List<Order> result = new ArrayList<>(); | ||
| String sql = "select \"ORDER\".ID,USER.NAME as USER_NAME,GOODS.NAME AS GOODS_NAME,GOODS_PRICE*GOODS_NUM as TOTAL_PRICE from \"ORDER\"\n" + |
| return null; | ||
| List<Order> result = new ArrayList<>(); | ||
| String sql = "select \"ORDER\".ID,USER.NAME as USER_NAME,GOODS.NAME AS GOODS_NAME,GOODS_PRICE*GOODS_NUM as TOTAL_PRICE from \"ORDER\"\n" + | ||
| "left join USER on \"ORDER\".USER_ID = USER.ID\n" + |
Contributor
|
你的提交 1aef7ff ,似乎失败了:Your tests failed on CircleCI 😅 请不要气馁,仔细分析原因,再接再厉! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.