insert into sys.new_table select id + (select max(id) from sys.Old_table),name from sys.Old_table;
这样我们就可以将insert
数据从一个表转移到另一个表中Oracle
。我怎样才能写这个查询Cassandra
?
Old_table
ID,Case Number,Date
8534426,HV210935,03/19/2012 12:00:00 PM
8534427,HV210768,12/16/2011 04:30:00 AM
我如何才能将insert
数据输入new_table
withnew_table.ID = Max(Old_table.ID)+Old_table.ID
和其他数据,如Old_table
using Cassandra
?我可以使用上述语法在mysql
.
new_table
ID,Case Number,Date
8534428,HV210935,03/19/2012 12:00:00 PM
8534429,HV210768,12/16/2011 04:30:00 AM
如果这也可以解决Spark
,请建议我。