我想要一份销售额超过3的所有SalesPersons的报告。
所以结果应该只是SalesPersonId的列表。
Table Sales:
-buyerId
-amount
-salespersonId
因此,如果SalespersonId有3个以上的销售额,您会在表格中找到此行SalePersonId的3行。
答案 0 :(得分:4)
这并不难,我想你可以自己做,如果你知道小组和发言的内容。
public class Batman extends CombatEntity{
//Default constructor with no parameters
public Batman(){
super("", null);
}
public Batman(String name, BufferedImage sprite){
super(name, sprite);
}
public void generateSpriteImage(String spriteImagePath) {
try {
File file = new File(spriteImagePath);
this.sprite = ImageIO.read(file);
}
catch(Exception e) {
//whatever
}
}
}
作为旁注,这些行不相关。在关系数据库中,“相关”意味着特定的东西,而不是那个。