A :
here is the code for remove first character from string of column data;
UPDATE table1
SET column1 = SUBSTRING_INDEX(column1 , "-",-1);
A :
hi here is code for this
UPDATE `t1` SET `col1` = REPLACE(`col1`, ' ', '')
A :
short answer for this query
UPDATE table1 set col1 = col2;
A :
hi here is code
INSERT INTO t2 (col1)
SELECT col1 FROM t1;
INSERT INTO t2 (col2)
SELECT col2 FROM t1;