Answers for "drop schema and all tables postgres"

SQL
0

postgresql drop table

DROP TABLE name;
Posted by: Guest on March-20-2021
0

how to drop all tables in postgresql

DROP SCHEMA public CASCADE;
CREATE SCHEMA public;

GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO public;
Posted by: Guest on August-03-2021

Code answers related to "drop schema and all tables postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language