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

  • Home
  • SEARCH
  • 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 51349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:44:11+00:00 2026-05-10T16:44:11+00:00

I’ve been led to believe that for single variable assignment in T-SQL, set is

  • 0

I’ve been led to believe that for single variable assignment in T-SQL, set is the best way to go about things, for two reasons:

  • it’s the ANSI standard for variable assignment
  • it’s actually faster than doing a SELECT (for a single variable)

So…

SELECT @thingy = 'turnip shaped' 

becomes

SET @thingy  = 'turnip shaped' 

But how fast, is fast? Am I ever really going to notice the difference?

  • 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. 2026-05-10T16:44:12+00:00Added an answer on May 10, 2026 at 4:44 pm

    SET is faster on single runs. You can prove this easily enough. Whether or not it makes a difference is up to you, but I prefer SET, since I don’t see the point of SELECT if all the code is doing is an assignment. I prefer to keep SELECT confined to SELECT statements from tables, views, etc.

    Here is a sample script, with the number of runs set to 1:

    SET NOCOUNT ON  DECLARE @runs int DECLARE @i int, @j int SET @runs = 1 SET @i = 0 SET @j = 0  DECLARE @dtStartDate datetime, @dtEndDate datetime   WHILE @runs > 0     BEGIN         SET @j = 0         SET @dtStartDate = CURRENT_TIMESTAMP         WHILE @j < 1000000             BEGIN                 SET @i = @j                 SET @j = @j + 1             END         SELECT @dtEndDate = CURRENT_TIMESTAMP         SELECT DATEDIFF(millisecond, @dtStartDate, @dtEndDate) AS SET_MILLISECONDS           SET @j = 0         SET @dtStartDate = CURRENT_TIMESTAMP         WHILE @j < 1000000             BEGIN                 SELECT @i = @j                 SET @j = @j + 1             END         SELECT @dtEndDate = CURRENT_TIMESTAMP         SELECT DATEDIFF(millisecond, @dtStartDate, @dtEndDate) AS SELECT_MILLISECONDS          SET @runs = @runs - 1     END 

    RESULTS:

    Run #1:

    SET_MILLISECONDS

    5093

    SELECT_MILLISECONDS

    5186

    Run #2:

    SET_MILLISECONDS

    4876

    SELECT_MILLISECONDS

    5466

    Run #3:

    SET_MILLISECONDS

    4936

    SELECT_MILLISECONDS

    5453

    Run #4:

    SET_MILLISECONDS

    4920

    SELECT_MILLISECONDS

    5250

    Run #5:

    SET_MILLISECONDS

    4860

    SELECT_MILLISECONDS

    5093

    Oddly, if you crank the number of runs up to say, 10, the SET begins to lag behind.

    Here is a 10-run result:

    SET_MILLISECONDS

    5140

    SELECT_MILLISECONDS

    5266

    SET_MILLISECONDS

    5250

    SELECT_MILLISECONDS

    5466

    SET_MILLISECONDS

    5220

    SELECT_MILLISECONDS

    5280

    SET_MILLISECONDS

    5376

    SELECT_MILLISECONDS

    5280

    SET_MILLISECONDS

    5233

    SELECT_MILLISECONDS

    5453

    SET_MILLISECONDS

    5343

    SELECT_MILLISECONDS

    5423

    SET_MILLISECONDS

    5360

    SELECT_MILLISECONDS

    5156

    SET_MILLISECONDS

    5686

    SELECT_MILLISECONDS

    5233

    SET_MILLISECONDS

    5436

    SELECT_MILLISECONDS

    5500

    SET_MILLISECONDS

    5610

    SELECT_MILLISECONDS

    5266

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

Sidebar

Ask A Question

Stats

  • Questions 94k
  • Answers 94k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Three approaches come to mind. Use regular expressions. This is… May 11, 2026 at 6:46 pm
  • Editorial Team
    Editorial Team added an answer Monitoring. Use some tools to monitor performance, and saturation of… May 11, 2026 at 6:46 pm
  • Editorial Team
    Editorial Team added an answer Are you using Windows 7 RC? If so, there are… May 11, 2026 at 6:46 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is
Is it possible to replace javascript w/ HTML if JavaScript is not enabled on

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.