use tempdb;
create table dbo.jbsite(jbssiteid int, JBMicrosoftSite varchar(1000), JBGoogleSite varchar(1000))
insert dbo.jbsite(jbssiteid) select 1;
insert dbo.jbsite(jbssiteid) select 2;
insert dbo.jbsite(jbssiteid) select 3;
GO
update dbo.jbsite
set JBMicrosoftSite = '<meta name="msvalidate.01" content="D255660C3D6036D9A2B2AF6441A9B856" />', JBGoogleSite = '<meta name="google-site-verification" content="QoDRyILC_Hr7WDMpGl9KX-UF1p4np5aVPYR6ThftOLk" />'
where JBSSiteID = 1
update dbo.jbsite
set JBMicrosoftSite = '<meta name="msvalidate.01" content="D255660C3D6036D9A2B2AF6441A9B856" />', JBGoogleSite = '<meta name="google-site-verification" content="f52KsZqcEDTcPfbC-akzbV5ojYjDwRazdClT8XzPtTg" />'
where JBSSiteID = 2
update dbo.jbsite
set JBMicrosoftSite = '<meta name="msvalidate.01" content="D255660C3D6036D9A2B2AF6441A9B856" />', JBGoogleSite = '<meta name="google-site-verification" content="mUJ8IklJLtbgglPm_ErBE78wAFhFOErq3lq9XXPvLkk" />'
where JBSSiteID = 3
|