Comments - ColumnStore Bulk Data Loading

7 years ago Dimitris Theodorou

And to figure out the order of columns I have to do something like this query?

select column_name from information_schema.columnstore_columns where table_schema = '<database>' and table_name = '<table>' order by column_position

 
7 years ago David Thompson

That would work or simpler would be show create table <table-name> to dump out the create table sql if you don't already have that to hand.

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.