I want to delete selected column values only... I have this statement:
strsql = "delete book1, author1, from book_Load where Book_ID_no = '" & bkIDnum.Text & "'"
With sqlcmd
.CommandText = strsql
.Connection = sqlconn
.ExecuteNonQuery()
End With
the error is "Incorrect syntax near ','."
please help me with this... thanks