Alignment of FROM table

What setting do I need to change to configure the alignment of the table in the FROM statement? I would like it to say:
FROM table1 t1 (space between FROM and table1)
SELECT
	t1.field1,
	t1.field2,
	t2.field3
FROM	table1 t1
	LEFT JOIN table2 t2
		ON t1.id = t2.id
WHERE
	t1.field1 = 'something'
	AND t2.field2 != 'else';

Answers

Sign In or Register to comment.