You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
7 lines
169 B
Plaintext
7 lines
169 B
Plaintext
USE tpch1;
|
|
select count(*) into outfile '/tmp/natcount.tbl' from nation;
|
|
select count(*) from nation;
|
|
count(*)
|
|
25
|
|
select count(*) into outfile 'nation.out' from nation;
|