Mam poniżej zapytanie i muszę przesyłać id
dovarchar
Schemat
create table t9 (id int, name varchar (55));
insert into t9( id, name)values(2, 'bob');
Co próbowałem
select CAST(id as VARCHAR(50)) as col1 from t9;
select CONVERT(VARCHAR(50),id) as colI1 from t9;
ale nie działają. Proszę zasugeruj.