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

13 lines
250 B
MySQL
Raw Normal View History

2015-07-04 18:34:25 -05:00
-- 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';