I noticed that inside of access db I can do ""select '21' like '2';" and it returns -1. If I do the same in jupyter notebook with sql alchemy, it returns "0". I found out that wildcard becomes underscore _ and I have to modify queries replacing with _ in jupyter notebook. Why is it so?
I noticed that inside of access db I can do ""select '21' like '2';" and it returns -1. If I do the same in jupyter notebook with sql alchemy, it returns "0". I found out that wildcard becomes underscore _ and I have to modify queries replacing with _ in jupyter notebook. Why is it so?