SELECT
name as [dbname]
FROM
sys.databases
-- for each [dbname]
--update @[dbname] [dbo].[tb_Setting] -- this is the loop I need help with
SET
currentvalue = 'Powered by WaqarAttari'
WHERE
Title = 'MyFooter' and currentvalue = 'Powered by WaqarAttari'
I want to help on this section
-- for each [dbname]
--update @[dbname] [dbo].[tb_Setting] -- this is the loop I need help with