i am getting problem in inserting. here i joined two tables and inserting the values in 3rd table. but it is giving prblem in inserting 3rd table. please will you help me to correct attched code. the error which i am getting is "No value given for one or more required parameter"
insrt querry problem
Hello frnds,
i am getting problem in inserting. here i joined two tables and inserting the values in 3rd table. but it is giving prblem in inserting 3rd table. please will you help me to correct attched code. the error which i am getting is "No value given for one or more required parameter"
i am getting problem in inserting. here i joined two tables and inserting the values in 3rd table. but it is giving prblem in inserting 3rd table. please will you help me to correct attched code. the error which i am getting is "No value given for one or more required parameter"
Jignesh TrivediPosted Oct 24, 2013, 12:20 AM
hi,
you can also insert value from select query directly with in one transaction...
example
Insert into tableA (a,b,c,d)
select colA as a, colB as b, colC as c, colD as d
from tableB tb
inner join tableC tc on tb.id =tc.id
hope this will help u.
Hemant SrivastavaPosted Oct 23, 2013, 12:12 PM
syed ziyaPosted Oct 21, 2013, 10:48 AM
Hemant SrivastavaPosted Oct 21, 2013, 9:13 AM