Sql Joins- Inner Joins, Self Joins, Outer Joins, Cross Joins
I generally feel that people are afraid of Joins in SQL Server. But if they know what the different types...
2010-01-02
24,851 reads
I generally feel that people are afraid of Joins in SQL Server. But if they know what the different types...
2010-01-02
24,851 reads
I’ve moved my blog to www.sqlandy.com and the first post of 2010 is up. It’s still very much a work...
2010-01-02
289 reads
Late last year, I blogged about some goals I had set for myself to accomplish during 2009. No goal-setting session...
2010-01-01
1,112 reads
The new year is less than 24 hours old and I’ve already been blessed with two different honors. I shared...
2010-01-01
553 reads
I received a notification e-mail earlier this morning that I’ve been selected as a Microsoft SQL Server MVP for 2010! ...
2010-01-01
908 reads
I started blogging about 2-1/2 years ago on SQLServerCentral.com and at the time it was the logical place for hosting....
2010-01-01
327 reads
And really bad plagiarism at that.
I received an email from someone suggesting I check out a book on Lulu.com, that...
2010-01-01
1,029 reads
I have been re-awarded MVP status for SQL Server for 2010. It's a humbling honor, and I will strive again...
2010-01-01
934 reads
I woke up this morning, late, after a great New Year’s Eve with friends. Too tired to get out of...
2010-01-01
347 reads
I woke up this morning, late, after a great New Year’s Eve with friends. Too tired to get out of...
2010-01-01
332 reads
By Steve Jones
I wrote about learning today for the editorial: I Can’t Make You Learn. I...
By ReviewMyDB
Fabric has CI/CD built in, but if you've tried to use it for database...
By Steve Jones
attriage – n. the state of having lost all control over how you feel...
Comments posted to this topic are about the item SSRS Reminded Me of the...
I have a need to execute a stored procedure and return the results to...
Title pretty much says it all - can this be done? I've tried several...
In SQL Server 2025, I have a table (dbo.UserPermission) that contains this data:
UserID UserPermissions 15 23 37 4 NULLWhat is returned when I run this code:
select bit_count(UserPermissions) as PermissionCount from dbo.UserPermission where UserID = 4;See possible answers