Examtopics

AWS Certified Data Engineer - Associate
  • Topic 1 Question 155

    A data engineer needs to create a new empty table in Amazon Athena that has the same schema as an existing table named old_table.

    Which SQL statement should the data engineer use to meet this requirement?

    • CREATE TABLE new_table AS SELECT * FROM old_tables;

    • INSERT INTO new_table SELECT * FROM old_table;

    • CREATE TABLE new_table (LIKE old_table);

    • CREATE TABLE new_table AS (SELECT * FROM old_table) WITH NO DATA;


    シャッフルモード