turn off recaptcha va sql query

2 weeks ago
version 3.9

can anyone tell me how i turn off recaptcha via sql query

i enabled it and cannot get into the site.
2 weeks ago
UPDATE [Setting]
SET [Value] = 'False'
WHERE [Name] = N'captchasettings.enabled'
2 weeks ago
i get the message
invalid object name setting
what do i change "setting" to ?
thanks !
2 weeks ago
toadman wrote:
invalid object name setting

You are probably not in the correct database.  Do this first
USE yourDBname
GO