functionality you use quite often....
INSERT, SELECT, FROM, WHERE, INNER JOIN, LEFT JOIN, RIGHT JOIN, sub queries....
just to name a few
what I find as good formatting is the following.
SELECT u.username, u.password
FROM `user` as `u`
WHERE u.id = (whatever)
as a very simple example