我确实通过SQL连接了2个表并添加了where子句。连接由where子句中的条件完成。我想知道where子句期望join子句是否按方括号分组是否有区别。举个例子问:例1等同于例2、例3吗?示例1(无分组):SELECT*FROMemployees,vacationWHEREemployees.first_name='Maria'andvacation_start>2017ANDemployees.employee_id=vacation.employee_id示例2(除了join子句之外的所有内容都被分组):SELECT*FROMemployees,vacationWHERE(empl