Good Morning,
Using SQL server 2005. I have 200 records and want to update ALL field with URL along with GUID where GUID is unique for every record
Here '<a href= constant and would like to insert GUID dynamically, also {GUID} varies for each records.
Table Groupone
---
Grouponeid (pk,uniqueidentifier,not null)
gfieldone (nvarchar(250),null)
datemodifiedon(datetime,null)
Kindly let me know where i am missing.
update Groupone
set gfieldone = '<a href=from Groupone
where
datemodifiedon>'01-23-2009'
thank in advance
mac
Using SQL server 2005. I have 200 records and want to update ALL field with URL along with GUID where GUID is unique for every record
Here '<a href= constant and would like to insert GUID dynamically, also {GUID} varies for each records.
Table Groupone
---
Grouponeid (pk,uniqueidentifier,not null)
gfieldone (nvarchar(250),null)
datemodifiedon(datetime,null)
Kindly let me know where i am missing.
update Groupone
set gfieldone = '<a href=from Groupone
where
datemodifiedon>'01-23-2009'
thank in advance
mac