Forum Discussion
wr2013
Mar 16, 2024Copper Contributor
Counting the number of occurrences of an entity in a table
I am trying to automate the counting of the number of times a country appears in a table. See below example. This table is original. ...
peiyezhu
Mar 16, 2024Bronze Contributor
select * from splitCell;
cli_split_data~splitCell~[;,]~ROAD NAMES (EDITOR);
select `ROAD NAMES (EDITOR)`,count(1) from splitCellsplit group by `ROAD NAMES (EDITOR)`;
https://e.anyoupin.cn/EData/?s=1165