我有一张桌子,
public static Retrofit getClient() {
Gson gson = new GsonBuilder()
.setLenient()
.create();
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(getBaseUrl())
.addConverterFactory(ScalarsConverterFactory.create())
.addConverterFactory(GsonConverterFactory.create(gson))
.build();
return retrofit;
}
在B列中,我需要在第2行中将数据插入为第1行(反之亦然),因为A列中的第1行和第2行具有相同的数据。我的表中有大约600万个此类行,因此需要一些帮助。
答案 0 :(得分:0)
我认为您需要过滤器,然后只需粘贴所需的值即可。