[SOLVED:MYSELF] Help with SQL query in VB.NET
Hello
I have textbox with text like 10,20,30
I need to know how can i convert this for SQL query like
where column in ('10','20','30')
Solution
Dim sword As String
sword = Replace(TextBox1.Text, ",", "','")
sword = "'" & sword...