80.4k views
5 votes
You need to create a table that is not managed by the Big SQL database manager. Which keyword would you use to create the table?

A) EXTERNAL
B) UNMANAGED
C) NONMANAGED
D) OUTSIDE

1 Answer

5 votes

Final answer:

The keyword you would use to create a table that is not managed by the Big SQL database manager is EXTERNAL.

Step-by-step explanation:

The keyword you would use to create a table that is not managed by the Big SQL database manager is EXTERNAL.

When creating an external table, you need to specify the location of the data file, which is typically outside of the database. This allows you to work with data stored outside of Big SQL and enables you to access and query data from different sources.

For example, if you have a CSV file stored on your computer, you can create an external table in Big SQL that points to that file, and then you can query and analyze the data using SQL commands.

User Cia
by
8.0k points