Код: Выделить всё
CancelChargesStep1 | CancelChargesStep2 | CancelChargesStep3
------------------------------------------------------------------
10#1000 | 20#500 | 30#250
Код: Выделить всё
`SqlCommand sqlComm = new SqlCommand("MyStoredProcedure", sqlConn);
sqlComm.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = sqlComm;
DataSet ds = new DataSet();
da.Fill(ds);`
Код: Выделить всё
SELECT CAST(CancelChargesStep1 AS VARCHAR(50)) AS CancelChargesStep1 FROM MyTable;
Подробнее здесь: https://stackoverflow.com/questions/790 ... 1000-becom