Ich habe unten Abfrage und Notwendigkeit, Guss id
zuvarchar
Schema
create table t9 (id int, name varchar (55));
insert into t9( id, name)values(2, 'bob');
Was ich versucht habe
select CAST(id as VARCHAR(50)) as col1 from t9;
select CONVERT(VARCHAR(50),id) as colI1 from t9;
aber sie funktionieren nicht. Bitte vorschlagen.