Answers for "Move table to a different schema"

SQL
0

Move table to a different schema

ALTER SCHEMA TargetSchema 
    TRANSFER SourceSchema.TableName;
Posted by: Guest on June-08-2021

Code answers related to "Move table to a different schema"

Code answers related to "SQL"

Browse Popular Code Answers by Language