In Arcadia Data, you can easily restrict the table columns in the dataset by changing the SQL definition of that dataset.
SQL-defined datasets make it easy to limit their content to specific rows.
Switch to Data Model interface, and click Show Data.
Notice that there is a large number of columns in the query result, and many of them are not necessary when it comes to answering most common questions.
county
, stname
,
ctyname
, tot_pop
, tot_male
, and
tot_female
.Switch back to Dataset Detail interface, and edit SQL text window by applying the following statement:
select county, stname, ctyname, tot_pop, tot_male, tot_female from main.us_counties
Click Save.
In the Refresh dataset table column information modal window, click Close.
Switch back to the Data Model interface, click Show Data, and notice that the dataset only has
the 6 explicitly specified columns, county
, stname
,
ctyname
, tot_pop
, tot_male
, and
tot_female
: