I would like to copy data from table a and insert it to the same table with a difference in one column.
For example: I have table a, with column name, I would like to :
insert into table a (name = 'daniel')
select * from table a where phone = '000'
I would like the tran to take all columns in table a which phone is '000' and insert them again into table a the same, only the column name would be different.
Thank you