mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 10:25:42 +01:00
7 lines
169 B
Text
7 lines
169 B
Text
F0 := IMDB.File_actors;
|
|
CountActors := RECORD
|
|
F0.ActorName;
|
|
UNSIGNED C := COUNT(GROUP);
|
|
END;
|
|
MoviesIn := TABLE(F0,CountActors,ActorName);
|
|
OUTPUT(TOPN(MoviesIn,100,-C));
|