如何在导入数据时检查行号

时间:2015-11-24 15:45:16

标签: mysql select insert

我们有数据库表' field_data_body'我们正在使用'插入...选择' mysql命令将数据插入' field_data_body'从另一张桌子。

表格结构: enter image description here

在我们的数据库表中,delta列用于区分相同的记录。例如,

enter image description here

在上面的例子中,除了delta的不同值之外,两行都有相同的数据。

如何在将数据插入数据库表时设置delta?

我在谷歌搜索和其他一些问题的堆栈交换,但没有找到解决方案。

提前致谢。

1 个答案:

答案 0 :(得分:0)

您可以使用2个查询。

  1. 插入tablename(col1,col2,..)值(value1,value2,..);
  2. insert into tablename(delta)Values(value)其中entity_type =' node';