Logo icon
    • Contents
    • Quick start
    • Concepts
    • For DevOps
    • For Developers
      • Getting started
      • YQL tutorial
        • Creating a table
        • Adding data to a table
        • Selecting data from all columns
        • Selecting data from specific columns
        • Sorting and filtering
        • Data aggregation
        • Additional selection criteria
        • Joining tables with JOIN
        • Inserting and updating data with REPLACE
        • Inserting and updating data with UPSERT
        • Inserting data with INSERT
        • Updating data with UPDATE
        • Deleting data
        • Adding and deleting columns
        • Deleting a table
      • Example applications
      • Primary keys
      • Secondary indexes
      • Query plans optimization
      • Batch upload
      • Paging
      • Timeouts
      • System views
      • Change Data Capture
      • Terraform
      • Custom attributes
    • For Security Engineers
    • For Contributors
    • Reference
    • Recipes
    • Troubleshooting
    • Questions and answers
    • Downloads
    1. For Developers
    2. YQL tutorial
    3. Deleting a table

    Deleting a table

    Delete the created tables using the DROP TABLE statement.

    DROP TABLE episodes;
    DROP TABLE seasons;
    DROP TABLE series;
    

    Was the article helpful?

    Previous
    Adding and deleting columns
    Next
    Example applications