How to check if a GUID is NULL :
Checking if a GUID is null is straight forward in SQL Server. Just use IS NULL keywords as shown below.
Declare @MyGuid Uniqueidentifier
If(@MyGuid IS NULL) Begin
Print ‘Guid is null’ End Else Begin
Print ‘Guid is not null’ End
In the above example, since @MyGuid is just declared and not initialised, it prints the message “Guid is null”
Now let’s say, if a GUID variable is NULL, then we want to initialise that GUID variable with a new GUID value. If it’s not NULL, then we want to retain it’s value. One way to do this is by using an IF condition as shown below.
Declare @MyGuid UniqueIdentifier
If(@MyGuid IS NULL) Begin Set @MyGuid = NEWID() End
Select @MyGuid
We can achieve exactly the same thing by using ISNULL() function. The advantage of using ISNULL() function is that, it reduces the amount of code we have to write.
Declare @MyGuid UniqueIdentifier Select ISNULL(@MyGuid, NewID())
How to check if a GUID is EMPTY : Before understanding how to check if a GUID is empty, let’s understand what is an empty GUID. An empty GUID is a GUID with all ZEROS as shown below.
00000000-0000-0000-0000-000000000000
How to create this empty GUID. Do we have to type all the ZERO’s and Hyphens. The answe is NO. We do not have to type them manually. Instead use one of the following SELECT query’s to create an empty GUID. I prefer to use the second SELECT statement as it has only one CAST
SELECT CAST(CAST(0 AS BINARY) AS UNIQUEIDENTIFIER)
OR
SELECT CAST(0x0 AS UNIQUEIDENTIFIER)
To check if a GUID is an empty GUID, you have 2 options
Option 1: You can compare it to an Empty GUID value as shown below
Declare @MyGuid UniqueIdentifier Set
@MyGuid = ‘00000000-0000-0000-0000-000000000000’
If(@MyGuid = ‘00000000-0000-0000-0000-000000000000’)
Begin
Print ‘Guid is Empty’ End Else Begin
Print ‘Guid is not Empty’
End
Option 2: You can also compare it to a return value of the CAST method
Declare @MyGuid UniqueIdentifier
Set @MyGuid = ‘00000000-0000-0000-0000-000000000000’
If(@MyGuid = Cast(0x0 as Uniqueidentifier))
Begin
Print ‘Guid is Empty’
End Else Begin
Print ‘Guid is not Empty’
End
Greetings from Ohio! I’m bored at work so I decided to browse your website on my iphone during lunch break. I love the knowledge you provide here and can’t wait to take a look when I get home. I’m surprised at how fast your blog loaded on my cell phone .. I’m not even using WIFI, just 3G .. Anyhow, good blog!
Thanks For your nice comment !
I was just looking for this info for some time. After six hours of continuous Googleing, finally I got it in your web site. I wonder what’s the lack of Google strategy that do not rank this type of informative websites in top of the list. Generally the top web sites are full of garbage.
Thanks For your nice comment !
I’m so happy to read this. This is the kind of manual that needs to be given and not the random misinformation that is at the other blogs. Appreciate your sharing this greatest doc.
Thanks!
As I site possessor I believe the content material here is rattling wonderful , appreciate it for your efforts. You should keep it up forever! Good Luck.
Thanks!
Thanks for your comment . Sir/Madam. Ok, i look check it.
Thanks for your lovely comment !Sir/Madam.
Thank! For you wonderful comment with feedback.
Thanks for your opinion.
What抯 Taking place i am new to this, I stumbled upon this I’ve found It absolutely useful and it has aided me out loads. I hope to give a contribution & aid different users like its aided me. Great job.
Wow , thanks sir for your nice complement.