डिफ़ॉल्ट कॉलम के रूप में यह संभव नहीं है। आप एक ट्रिगर लिख सकते हैं और ऐसा कर सकते हैं या Mysql 5.7 में वर्चुअल कॉलम जोड़ सकते हैं।
या
alter table Tab1 add allocated_amount int; -- Add column
update Tab1 set allocated_amount= amount; -- Set the value
या आप एक वर्चुअल कॉलम बना सकते हैं:
alter table Table1
add allocated_amount integer GENERATED ALWAYS AS (amount) VIRTUAL;