• ziangij (5/28/2010)


    However was wondering, when SSMS executes the query, it would have to do some effort to remove spaces between the words 🙂

    SSMS itself does not execute queries because it is a client application. SSMS divides input text into batches, sequentially sends those batches to SQL Server, and displays received results. No spaces are added or removed while sending batches to the server. You can use SQL Server Profiler to see it.