Create table from a existing table

How can we create a table using liquibase from a subset of existing table? If I do not want to run SQL from liquibase as below.


create table table1 as (select col1,col2,col3 from table2);

There is no built in support with the change tags to do that. You will just have to use:


  1. Nathan