vote up 1 vote down star

I have a dynamic query in which I want to concatenate uniqueidentifier, but + and & operators are not supporting this, is there a way I can concatenate uniqueidentifier to a dynamic string. Any sample or any help in this regard will be highly appricated.

flag

50% accept rate

1 Answer

vote up 1 vote down

Have you tried casting or converting to a string first, then concating?

CAST(NEWID() AS NVARCHAR(36))
link|flag
i tried this it is not working, giving incorrect syntax near cast, or convert if im converting – Yaser Ahmed Jun 24 at 6:06
@Yaser: "SELECT CAST(NEWID() AS NVARCHAR(36))". Please try and think for yourself. – gbn Jun 24 at 6:17
Sorry Dear friends my where condition is WHERE (CreatedBy= CAST(@p_CreatedBy AS NVARCHAR(100)) ) here @CreatedBy is a uniqueidentifier i even tried converting it, not getting any result. Please help – Yaser Ahmed Jun 24 at 7:01
@Yaser CAST() may be formatting the Guid differently than your "CreatedBy" column. Run both versions by hand and check that the strings follow the same format. If not, then convert the other "CreatedBy" to a Guid and compare Guids instead. – Frank Krueger Jun 24 at 7:41
it might be the problem, but how do i do that – Yaser Ahmed Jun 24 at 8:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.