I want to take a column with values that repeat multiple times and get that value only once and store it for later use, but at the same time I would like to get another valu
Try this:
SELECT * INTO new_table FROM (SELECT DISTINICT * FROM table_name) x