Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4024230
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:41:45+00:00 2026-05-20T10:41:45+00:00

i know the use of GO keyword. it sends multiple statements to sql server

  • 0

i know the use of GO keyword. it sends multiple statements to sql server as a whole group, instead of sending each statement one by one. i hope i am right!

but i want to know that do programmers use it in real applications. like if we create a stored procedure, then that also does the same thing,it also compiles the code and make an execution plan , and send the whole group to the server.

so do we need to specify the GO keyword in the coding of database objects such as triggers, views, stored procedures ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T10:41:46+00:00Added an answer on May 20, 2026 at 10:41 am

    GO is a command used for signaling the end of a batch. Note that it is not a T-SQL statement.

    Batch is a group of one or more Transact-SQL statements sent at the same time from an application to SQL Server for execution

    GO is very useful in SQL Server. Though, you need to use it only when is really needed.
    So, you need to keep in mind that along with defining a batch using the GO command, you define the scope of that specific piece of T-SQL code. The local variables defined in a batch are specific to that batch.

    Scope example –

    DECLARE @STRING1 AS VARCHAR(50)
    DECLARE @STRING2 AS VARCHAR(50)
    
    SET @STRING1='BATCH 2'
    SET @STRING2='BATCH 3'
    
    SELECT @STRING1 AS RESULT
    GO
    
    SELECT @STRING2 AS RESULT
    GO
    

    Running this will give you error saying @STRING2 is not declared. Because the scope of that variable ends with the GO. So beware of using GO and use smartly.

    Source – http://aartemiou.blogspot.com/2009/08/using-go-command-in-sql-server.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know you can use C++ keyword 'explicit' for constructors of classes to prevent
I know the use of server-side controls is a no-no in ASP.NET MVC, however
I know you cannot use a alias column in the where clause for T-SQL;
In C# I know you can use the default keyword to assign default values
As I know that in C we could use the keyword register to suggest
I would like to know, can I use insert keyword to add elements into
I know how to use tags in subversion. I create a tag every time
I know how to use JSON to create objects, but there doesn't seem to
I know how to use the OleDbConnection class to open an excel file and
I know you can use the <jsp:useBean> tag to instantiate objects within JSPs without

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.