I have a folder of csv files of which some will be swapped out often and some less often. For an easy user experience, all processing should happen in Base. The number and names of these csv files will change with time, so no direct calls to “file1.csv”, “file2.csv” etc. should happen.
So how do I dynamically refer to all tables and combine them? This should be a simple task, given that all the column names will remain the same. If required the schema could be “date, numid, user, string”. My SQL skills are too rusty for this, I naively tried with “SELECT ALL * FROM *”.
Alternatively, I want the folder with csv files be treated a single dynamic table.