Posts
Sort by recent activity
GO
Hi!
The GO statement is not taking into consideration during the formatting:SELECT
*
FROM
Production.Product;
GO
It should looks like:SELECT
*
FROM
Production.Product;
GO
Ma...