General SQL-style Operations in SPL
After we retrieve data from the data source as a table sequence in SPL, we can perform all SQL-style operations, such as filtering, aggregation, inter-column calculations, sorting, grouping & aggregation, top-N, post-grouping top-N, distinct, post-grouping distinct, and join to name a few. In this essay, we take the file data source to explain how to achieve those operations on a SPL table sequence. 1.Filtering A filtering operation selects records that meet the specified condition (s) from a data table. Example: Get scores of students in class 10 from the following student scores table Students_scores.txt. The first row of the file
...