I have two #temp tables with single column I need to transfer both those columns into new #temp table by converting one column in to INT?
#ProductID
Pid
4
7
8
9
23
88
#Name
Name
tom
jerry
harry
jim
jack
jones
How can insert in to new temp table with two columns and change #ProductID column in to Int data type?
The new temp table should look like:
#Temp1
Pid name
4 tom
7 jerry
8 harry
9 jim
23 jack
88 jones