c#
StatCounter
View My Stats
Showing posts with label
Difference b/w COUNT_BIG and COUNT in SQL server
.
Show all posts
Showing posts with label
Difference b/w COUNT_BIG and COUNT in SQL server
.
Show all posts
Saturday, February 14, 2009
Difference b/w COUNT_BIG and COUNT in SQL server
Difference b/w COUNT_BIG and COUNT in SQL server
1.Count_big always returns the Bingint values...but count returns the
int values
2.Both count the No of Rows in a table
Older Posts
Home
Subscribe to:
Posts (Atom)
Name value collection in C#
Name value collection in C# The name value collection is same like the HashTable. We can set the Object value and the Key to that par...
What are Structural Design Patterns?
What are Structural Design Patterns? A structural design pattern establishes a relationship between entities. Thus making it easier for...
To found n'th Salary Of a Recods:SQl Server
The query as Follows: select top 1 salary from (select distinct top 2 salary from table1 order by salary desc) a order by salary Here salary...