Answers for "how to enable extension in postgreSQL"

SQL
0

how to enable extension in postgreSQL

-- Enable the fuzzystrmatch extension 
CREATE EXTENSION IF NOT EXISTS fuzzystrmatch;

-- Confirm that fuzzstrmatch has been enabled
SELECT extname FROM pg_extension;
Posted by: Guest on March-29-2022

Code answers related to "how to enable extension in postgreSQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language