0
insert into sys.new_table select id + (select max(id) from sys.Old_table),name from sys.Old_table;
通過這個,我們可以將insert
數據從一個表格移動到另一個表格Oracle
。我如何在Cassandra
中寫這個查詢?如何使用cassandra中的另一個表選擇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
與new_table.ID = Max(Old_table.ID)+Old_table.ID
和其他數據作爲Old_table
使用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
也得到解決。