How to insert data table to database
How to insert datatable values into sql. 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.
Sam HobbsPosted Sep 19, 2011, 5:55 PM
Naeem KhanPosted Sep 19, 2011, 7:58 AM
for insert data table into Database..
create table table_name
(
column1 datatype,
column2 datatype,
.........
)
// for inserting data into table
INSERT INTO table_name
VALUES (value1, value2, value3,...)
reagds,
Naeem Khan