I have seen this sort of code:

Dim del As New SqlCommand("DELETE FROM Table1")
or
Dim del As New SqlCommand("DELETE FROM Table1 WHERE ID = 3")

(Delete From is the same as Delete * From as I have read in my tutorial)

but I want to do this:

Dim del As New SqlCommand("DELETE FROM Table1 IN COLUMN stringValues")

So it delete's all items added to stringValues.

Can anyone help me with this, I have searched for this with no success.

Cheers