I'm trying to create a table from another table (CREATE TABLE...AS...
statement), but I don't want to insert the rows from the first table. I only need the columns. How?
CREATE TABLE employees24
AS (
SELECT employee_id AS "ID",
first_name,
last_name,
salary,
department_id AS "DEPT_ID"
FROM employees);