D Danden Registered User. Local time Today, 13:45 Joined Jun 10, 2013 Messages 26 Jul 8, 2013 #1 Hello, I have a fields in column "description" which are empty and I want to update them with the data for example "D2". Why this does not work? update dbo_Zones set description ='D2' where description=""
Hello, I have a fields in column "description" which are empty and I want to update them with the data for example "D2". Why this does not work? update dbo_Zones set description ='D2' where description=""
pbaldy Wino Moderator Staff member Local time Today, 13:45 Joined Aug 30, 2003 Messages 36,272 Jul 8, 2013 #2 Try update dbo_Zones set description ='D2' where description Is Null
D Danden Registered User. Local time Today, 13:45 Joined Jun 10, 2013 Messages 26 Jul 8, 2013 #3 Thank you for tip.
C ChristopherL Registered User. Local time Today, 13:45 Joined Jul 2, 2013 Messages 90 Jul 8, 2013 #4 update dbo_Zones set description ='D2' where description=" " Click to expand... worked for me, I just added a space between your "" so " " instead
update dbo_Zones set description ='D2' where description=" " Click to expand... worked for me, I just added a space between your "" so " " instead
pbaldy Wino Moderator Staff member Local time Today, 13:45 Joined Aug 30, 2003 Messages 36,272 Jul 8, 2013 #5 Danden: happy to help ChristopherL: That would only work if the field contained a single space, which would be unusual in my experience. Most common would be Null or a ZLS ("").
Danden: happy to help ChristopherL: That would only work if the field contained a single space, which would be unusual in my experience. Most common would be Null or a ZLS ("").