If one column is of type int and has a value of 10. Another column is of type varchar and has a value of "10". Is it safe to join these values ββ(mySql), and am I getting the same result as if both were of type int and value 10?
I need to have them of different types, because in the same table the column is an auto-increment key (therefore it must be int). Another column (in another table) can sometimes contain values ββwith letters, so I have to make it varchar. Can you look at any huge problems with this or maybe I should revise my schema?
sql mysql
tom
source share