1
0
Fork 0
mirror of https://github.com/treffynnon/sqlstyle.guide.git synced 2025-03-09 12:49:51 -05:00
sqlstyle.guide/_includes/sql/syntax_spacing.sql
2015-07-05 00:34:25 +01:00

13 lines
No EOL
250 B
SQL

-- No
SELECT a.release_date,a.title
FROM albums AS a
WHERE a.title='Charcoal Lane'OR
a.title='The New Danger';
-- Yes
SELECT a.release_date,
a.title
FROM albums AS a
WHERE a.title = 'Charcoal Lane'
OR a.title = 'The New Danger';