The text entered when hitting tab upon typing 'OPENQ' (to expand the OPENQUERY suggestion) yields the following:
SELECT
*
FROM
OPENQUERY AS O
The cursor follows the O alias. It should do the following:
SELECT
*
FROM
OPENQUERY() AS O
The cursor should be between the parenthesis.
The cursor follows the O alias. It should do the following:
The cursor should be between the parenthesis.