General operations on SPL files
SPL has two file formats: bin file and composite table, with suffixes btx and ctx respectively. This article introduces the conventional calculations of SPL on these/ two types of files, similar to the simple calculations that SQL can express (excluding subqueries). The basic concepts and generation methods related to these two types of files can be found in: How to use SPL storage for beginners . Sample data Here, we use some data tables and fields from TPCH. orders, order table (ctx), the used fields are O_ORDERKEY order number, primary key; O_CUSTKEY customer number; O_TOTALPRICE order amount; O_ ORDERDATE order
...