Answers for "how to remove schema of a table"

SQL
1

sql drop schema

-- EXAMPLE 1
DROP SCHEMA qlk2;

-- EXAMPLE 2
DROP SCHEMA IF EXISTS qlk2;

/* SYNTAX 
DROP SCHEMA [IF EXISTS] <schema-name>;
Posted by: Guest on June-23-2020

Code answers related to "how to remove schema of a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language