Hello,
I am trying to write an SQL insert that gets some values from another table and some values created from elsewhere. What i would like to do is:
Is something like this possible - if so how?
Cheers,
Neil
I am trying to write an SQL insert that gets some values from another table and some values created from elsewhere. What i would like to do is:
Code:
insert into table1
(Board,entity,info,value,clocked)
values('A','B','C',select value from table2 where info=123,getDate())
Is something like this possible - if so how?
Cheers,
Neil