Hello everyone I am having a completely weird issue while executing query in SQL Server from R with odbc
when I select column1 and column 2, there is no error
same when I just select column 3
dbFetch(dbSendQuery(my_connector,"SELECT column1, column2 FROM MYTABLE"))
dbFetch(dbSendQuery(my_connector,"SELECT column3 FROM MYTABLE"))
but when I try to select the three columns or when I try to select another column with column3 I get this error
dbFetch(dbSendQuery(my_connector,"SELECT column1, column2, column3 FROM MYTABLE"))
dbFetch(dbSendQuery(my_connector,"SELECT column1, column3 FROM MYTABLE"))
dbFetch(dbSendQuery(my_connector,"SELECT column2, column3 FROM MYTABLE"))
If anyone has ever encountered the same issue I really need your help