I have the following column in mysql table:
NoRegProp
-------------
NULL
62
135/عرسال
31المنية
التبانة 1132
which is not organized at all. I want to separated the numeric values from the string values in 2 different columns as follow:
numberReg placeReg
NULL NULL
62 NULL
135 عرسال
31 المنية
1132 التبانة
Please any help?