main
1UPDATE users
2SET
3  name = 'John Smith',
4  email = 'john.smith@example.com',
5  last_updated = NOW()
6WHERE id = 1
7  AND active = TRUE