Hi @Zetsubo6996 ,
Please try:
ALTER TABLE tablename ADD id INT IDENTITY(1,1)
UPDATE t
SET Card_ID=CONCAT('BSH-CF',id)
FROM tablename t
The above code can make the Card_ID column increment to the last row in your table.
If you have any question, please feel free to let me know.
Regards
Echo
If the answer is helpful, please click "Accept Answer" and upvote it.