How can we help you today? How can we help you today?

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';
davidsumlin
0

Comments

1 comment

  • AlessandroAlpi
    hey @davidsumlin
    in order to align the table to the field list you have to set the "Align items to the tabs stops", under Lists, to true:
    5ibh3zhg39oh.png
    AlessandroAlpi
    0

Add comment

Please sign in to leave a comment.