Columns

The columns system table includes information about all the columns within all the tables created in your organization.

From a worksheet within Upsolver, run the following query:

SELECT * 
FROM system.information_schema.columns;
-- If you have a lot of columns, you can use LIMIT to reduce the result set 
-- LIMIT 50; 

The system.information_schema.columns table includes the following columns:

For more information on tables and columns, please refer to the Tables SQL command reference.

Last updated