"all_games"
我正在尝试在使用 SQLite调用的表中插入一行。我有值"game"
,"money"
where game
is an integer
and money
is a string
,但是中间值"players"
是我没有的值,所以我想从另一个包含它的表中获取它。
这是我当前使用的 SQL 查询:
INSERT INTO all_games (game, ... , money)
SELECT (12, players, \'100, 200\') FROM games WHERE id=2
澄清一下,“12”和“100, 200”代表我已经拥有的值,我只想players
从另一个表中获取。
提前感谢您的帮助!