Skip to content

Instantly share code, notes, and snippets.

View RafaelaMirabile's full-sized avatar

Rafaela C. Mirabile RafaelaMirabile

View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

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