convert
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
hi You can use Convert function for this. like select convert(varchar,Intvalue)+varcharvalue from table. Regards Joe
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
Generally I return just the data from SQL Server and perform any formatting necessary in the 'client' code (i.e. the code that called into SQL Server).
DoEvents: Generating unexpected recursion since 1991
-
select IntValue+VarcharValue from tbl but it's not possible so how to convert IntValue in varchar in query only like select convert.tostring(IntValue)+VarcharValue from tbl what can I do despite of convert.toString because convert.Tostring wrong thanks
You get the best out of others when you give the best of yourself.
Hi... Try This One Will Work Select Convert(varChar(20), Role) + LogInID From LogIn By Take Care.. :)