本文介绍了在连接的archr hoe中,从一个表中进行选择,然后插入其他tbale数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

string strRegi =插入Regi_RecordsTB(App_No,Course)值(+ int.Parse(txtAppl_no.Text)+,+ cboxcourse.Text +')从new_crs_editorTB选择(课程);不选择从其他tbale如何?



我尝试过:



string strRegi =插入Regi_RecordsTB(App_No,Course)值(+ int.Parse(txtAppl_no.Text)+,+ cboxcourse.Text +')从new_crs_editorTB中选择(课程);不从其他tbale中选择如何?

string strRegi = "insert into Regi_RecordsTB(App_No,Course) values(" + int.Parse(txtAppl_no.Text) + ",'"+ cboxcourse.Text +"') select(course) from new_crs_editorTB";not select from other tbale how?

What I have tried:

string strRegi = "insert into Regi_RecordsTB(App_No,Course) values(" + int.Parse(txtAppl_no.Text) + ",'"+ cboxcourse.Text +"') select(course) from new_crs_editorTB";not select from other tbale how?

推荐答案


这篇关于在连接的archr hoe中,从一个表中进行选择,然后插入其他tbale数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 07:38