Apr 6, 2002 #1 axel23 Technical User Mar 31, 2002 2 AU hi dear Could you please help me out. how to populate data in to data base.
Apr 6, 2002 #2 tlbroadbent MIS Mar 16, 2001 9,982 US You insert data into the database. In ANSI SQL you write query statements like the follwoing. Insert MyTable (col1, col2, col3, ..., colN) Values (val1, val2, val3, ..., valN) However there are many ways to get data into a database depending on the database you use. Terry L. Broadbent - DBA Computing Links: http://tlbroadbent.home.attbi.com/prog.htm faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions. Upvote 0 Downvote
You insert data into the database. In ANSI SQL you write query statements like the follwoing. Insert MyTable (col1, col2, col3, ..., colN) Values (val1, val2, val3, ..., valN) However there are many ways to get data into a database depending on the database you use. Terry L. Broadbent - DBA Computing Links: http://tlbroadbent.home.attbi.com/prog.htm faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions.