I have multiple tables with similar data between them, and I'd like to know if it's at all possible to query all of them at once.
I see in the documentation, you don't need to provide a "FROM" table, when the current table is the one you want to query, but that seems like what I want to do?
Something like...
FROM table1.csv, table2.csv Select a.FirstName, a.LastName Where a.Age > 25
I don't think a join would be appropriate here, since I'm not trying to find adjoining information from a third table...
Sorry, I'm not exactly the most fluent with SQL, so maybe what I'm asking is already answered somewhere else...
I'm using RBQL from within vscode if it matters.
I have multiple tables with similar data between them, and I'd like to know if it's at all possible to query all of them at once.
I see in the documentation, you don't need to provide a "FROM" table, when the current table is the one you want to query, but that seems like what I want to do?
Something like...
FROM table1.csv, table2.csv Select a.FirstName, a.LastName Where a.Age > 25I don't think a join would be appropriate here, since I'm not trying to find adjoining information from a third table...
Sorry, I'm not exactly the most fluent with SQL, so maybe what I'm asking is already answered somewhere else...
I'm using RBQL from within vscode if it matters.