Can the datatype of a field be changed to bigint from float ??
Create a new column that's an integer:
ALTER TABLE tabl ADD newCol int;
Select the data from the old column into the new one:
UPDATE tabl SET newCol = CAST(TEL2 AS int) FROM tabl ;
P.S: I am using MS SQL Server
i try to us this in c# but it didn't get any result
string sqlCommand = "SELECT * FROM tabl WHERE CONCAT([TEL1], [TEL2],[TEL3], [TEL4],[TEL5], [TEL6],[TEL7], [TEL8],[TEL9]) LIKE '%" + txtBoxSearch.Text + "%'";
I store telephone numbers as float and try find it by the c# code and didn't get any result so im trying to convert the column or correct the c# code