+ 2
is there any way to cast data types?
for example if i create a table of varchar and i want to turn a column into a binary
2 Answers
+ 3
ALTER TABLE Table1
ALTER COLUMN Column1 <datatype>
0
Alter table xyz
Alter column yxyz binary;
for example if i create a table of varchar and i want to turn a column into a binary