https://en.wikipedia.org/wiki/FLWOR
SELECT first_name FROM person WHERE first_name LIKE 'john'
becomes:
FROM person WHERE first_name LIKE 'john' SELECT first_name
SQL reads more English like while from first is more Yoda speak but the auto-complete is worth more to me.
https://en.wikipedia.org/wiki/FLWOR
SELECT first_name FROM person WHERE first_name LIKE 'john'
becomes:
FROM person WHERE first_name LIKE 'john' SELECT first_name
SQL reads more English like while from first is more Yoda speak but the auto-complete is worth more to me.