每个循环/替换的 NexusDB
NexusDB for each loop / substitute
我需要做一点俯卧撑。
我有一个从 select.
创建的临时 table
现在我需要遍历那个 table 并且对于那个 table 中的每条记录我需要使用这个临时 table 中的一些值插入到其他 table ]s.
无论如何,我不知道如何在 NexusDB 中做到这一点。
只是我想在 nexusdb 中执行此操作 sql:
foreach(record in table1){
insert into table2 (columns) values record.id, record.name ... etc.
}
我希望它对你们有意义,我期待你们的一些美好的想法。
谢谢。
NexusDB 不需要“foreach”,你可以这样做:
insert into temp1 (field_2, field_3) (SELECT field_2, field_3 FROM temp2)
我需要做一点俯卧撑。 我有一个从 select.
创建的临时 table现在我需要遍历那个 table 并且对于那个 table 中的每条记录我需要使用这个临时 table 中的一些值插入到其他 table ]s.
无论如何,我不知道如何在 NexusDB 中做到这一点。
只是我想在 nexusdb 中执行此操作 sql:
foreach(record in table1){
insert into table2 (columns) values record.id, record.name ... etc.
}
我希望它对你们有意义,我期待你们的一些美好的想法。
谢谢。
NexusDB 不需要“foreach”,你可以这样做:
insert into temp1 (field_2, field_3) (SELECT field_2, field_3 FROM temp2)