Skip to content

解决眼瞎没加注解问题#172

Open
DieselNiu wants to merge 1 commit into
masterfrom
DieselNiu-patch-3
Open

解决眼瞎没加注解问题#172
DieselNiu wants to merge 1 commit into
masterfrom
DieselNiu-patch-3

Conversation

@DieselNiu

Copy link
Copy Markdown
Contributor
  • 这个PR解答了当前仓库中的题目(机器人会自动判题并合并当前PR)
  • 这个PR修复了当前仓库中的一些代码缺陷(机器人不会判题,而是由管理员来处理当前PR)

@hcsp-bot

Copy link
Copy Markdown
Contributor

🎉 感谢提交Pull Request!请稍等片刻,我们已经将其提交到CI进行检查,一旦有结果会立即通知您!
不过,我们发现你在这个仓库中还打开了其他的Pull Request:

#169
#170
#171
#168

我们不鼓励同时打开多个Pull Request,请集中精力于现在的这个Pull Request,谢谢!:pray:

return null;

List<GoodsAndGmv> result = new ArrayList<>();
String sql = "select GOODS_ID,GOODS.NAME as NAME, SUM(GOODS_PRICE*GOODS_NUM) as GMV\n" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。


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" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。

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" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。


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" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。

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" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。

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" +

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'+' 应另起一行。

@hcsp-bot

Copy link
Copy Markdown
Contributor

你的提交 1aef7ff ,似乎失败了:Your tests failed on CircleCI

😅 请不要气馁,仔细分析原因,再接再厉!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants