Is there a way to insert pre-set values and values I get from a select-query?
For example:
INSERT INTO table1 VALUES ("A string", 5, [int]).
I have the value of "A string" and the number 5, but I've to find the [int] value from a select like this:
SELECT idTable2
FROM table2
WHERE ...
that gives me that id to put inside table1.
How to merge this into one statement?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…