See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| -- Q1 | |
| SELECT users.id, users.name,cities.name AS city | |
| FROM users | |
| JOIN cities | |
| ON users."cityId"=cities.id | |
| WHERE cities.name ='Rio de Janeiro'; | |
| --Q2 | |
| SELECT testimonials.id, users.name AS writer, tabela1.name AS recipient, testimonials.message | |
| FROM testimonials |