Hi all,
I have a DataTable containing some rows in it. I want to delete a group of rows from that DataTable on some condition (ex: Emp_ID=1 and Dept_ID=2) how can I do this. Please help me.
Hi all,
I have a DataTable containing some rows in it. I want to delete a group of rows from that DataTable on some condition (ex: Emp_ID=1 and Dept_ID=2) how can I do this. Please help me.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Yasmeen HashishPosted Dec 17, 2006, 3:21 PM
Delete From [table name] Where [condition] And [condition]
for ex:
Delete From Employee Where Emp_ID=1 And Emp_Title=Engineer ;