My code works fine if I pick a column where the values are doubles but now I want to uwe another column where the values are not double, can I convert them to doubles inside the select statement?
the values are like 00:17,15
I already have a method that makes this string to a double but don't know how to use is inside the select statement, suggestions?
SqlCommand command = new SqlCommand("SELECT min(Score) FROM "+ table +" WHERE [" + sportEvent + "] < (@result);", connect);
command.Parameters.AddWithValue("@result", result);