Can someone please help me to debug why the following script cannot run in snowflake? It said it has syntax error inside. Thanks
<code>'''
</code>
<code>'''
</code>
'''
DECLARE
current_database STRING;
current_schema STRING;
BEGIN
current_database := CURRENT_DATABASE();
current_schema := CURRENT_SCHEMA();
IF current_database <> ‘DEV’ OR current_schema <> ‘CONFIG’ THEN
RETURN ‘WRONG SCHEMA SELECTED’;
ELSE RETURN ‘GOOD’
END IF;
END;
<code>'''
</code>
<code>'''
</code>
'''