I have an access program that uses some related ODBC tables. I originally had a query containing the following INNER JOIN:
FROM Neptune_FN_Analysis INNER JOIN Neptune_prem ON Neptune_FN_Analysis.PremID = Neptune_prem.premice_id
This worked fine until the Neptune_prem.premice_id column changed from number to text. So now I need to use INNER JOIN for two columns if one of them is a number and the other is text.
Please keep in mind that I am not allowed to simply change the data type in the table that the linked ODBC tables are looking at.
If this is impossible or eloquent code, my other logical option would be to make a request to create a local table, which I can edit with all the same data in the Neptune_FN_Analysis table and in the code after this request, edit the column with which I connect to enter text. I would prefer to just modify this SQL query if that makes sense.
Bryan source share