Hi guys! I did not find a solution how to duplicat...
# exposed
l
Hi guys! I did not find a solution how to duplicate an existing table to a new one include all the data like (postgres):
Copy code
CREATE TABLE new_table AS 
TABLE existing_table;
can someone know how to do it, or i should use a row sql query?