Saving a select count(*) value to an integer (SQL Server)

后端 未结 4 431
失恋的感觉
失恋的感觉 2021-02-01 05:41

I\'m having some trouble with this statement, owing no doubt to my ignorance of what is returned from this select statement:

declare @myInt as INT
set @myInt = (         


        
相关标签:
4条回答
  • 2021-02-01 05:58
    Declare @MyInt int
    Set @MyInt = ( Select Count(*) From MyTable )
    
    If @MyInt > 0
    Begin
        Print 'There''s something in the table'
    End
    

    I'm not sure if this is your issue, but you have to esacpe the single quote in the print statement with a second single quote. While you can use SELECT to populate the variable, using SET as you have done here is just fine and clearer IMO. In addition, you can be guaranteed that Count(*) will never return a negative value so you need only check whether it is greater than zero.

    0 讨论(0)
  • 2021-02-01 06:05

    [update] -- Well, my own foolishness provides the answer to this one. As it turns out, I was deleting the records from myTable before running the select COUNT statement.

    How did I do that and not notice? Glad you asked. I've been testing a sql unit testing platform (tsqlunit, if you're interested) and as part of one of the tests I ran a truncate table statement, then the above. After the unit test is over everything is rolled back, and records are back in myTable. That's why I got a record count outside of my tests.

    Sorry everyone...thanks for your help.

    0 讨论(0)
  • 2021-02-01 06:10

    If @myInt is zero it means no rows in the table: it would be NULL if never set at all.

    COUNT will always return a row, even for no rows in a table.

    Edit, Apr 2012: the rules for this are described in my answer here:Does COUNT(*) always return a result?

    Your count/assign is correct but could be either way:

    select @myInt = COUNT(*) from myTable
    set @myInt = (select COUNT(*) from myTable)
    

    However, if you are just looking for the existence of rows, (NOT) EXISTS is more efficient:

    IF NOT EXISTS (SELECT * FROM myTable)
    
    0 讨论(0)
  • 2021-02-01 06:19
    select @myInt = COUNT(*) from myTable
    
    0 讨论(0)
提交回复
热议问题