I have a string which is combination of two cells from a mysql table
My strings are like this user_ID = 100A, 100B, 100C ...
My Mysql Table has cells value like thi USER = 100, ID = A, ....
SO I want to get result from the table using where clause like this
(SELECET * FROM table1 WHERE USER+ID = "100A" ORDER BY USER)
please tell me how to correctly use above query