SQL Statements for FoxPro 3.0 Database Containers
n CREATE DATABASE database_nameADD TABLE table_nameTo remove a table from the database container (not delete the table, but unlink it from the database container), use:REMOVE TABLE table_nameTo set the current database container to an existing database container, use:USE database_nameTo add or delete columns from a table in a database container, use the Alter Table statement (see “Alter Table Statement”).