Hello
I am trying to do the following and continue to fail....
insert into table1
(column1,column2,column3,column4, column5, column6, column7)
Values
('value','value','value','value','value',
(Select column1, column2
from table2 where column3 = "1')
I can't seem to get the syntax to work, It will work propely if I use Values or Select but not both....Thanks in advance for any help.....
I am trying to do the following and continue to fail....
insert into table1
(column1,column2,column3,column4, column5, column6, column7)
Values
('value','value','value','value','value',
(Select column1, column2
from table2 where column3 = "1')
I can't seem to get the syntax to work, It will work propely if I use Values or Select but not both....Thanks in advance for any help.....