1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test011/sql/selectIntoImport.sql
2016-01-06 14:08:59 -06:00

11 lines
708 B
SQL

select count(p_partkey), min(p_partkey), max(p_partkey), sum(p_partkey), avg(p_partkey) from selectIntoImport;
select count(p_name), min(p_name), max(p_name) from selectIntoImport;
select count(p_mfgr), min(p_mfgr), max(p_mfgr) from selectIntoImport;
select count(p_category), min(p_category), max(p_category) from selectIntoImport;
select count(p_brand1), min(p_brand1), max(p_brand1) from selectIntoImport;
select count(p_color), min(p_color), max(p_color) from selectIntoImport;
select count(p_type), min(p_type), max(p_type) from selectIntoImport;
select count(p_size), min(p_size), max(p_size) from selectIntoImport;
select count(p_container), min(p_container), max(p_container) from selectIntoImport;