I have a VBA function that returns a table
Public Function GetNames() As ADODB.Recordset
Is it possible to use it in SQL queries?
For example, for a regular sample: SELECT * FROM GetNames()
Source: https://ru.stackoverflow.com/questions/166254/
All Articles