如何更改两个不同数组中的项目位置

时间:2019-04-13 22:43:05

标签: reactjs react-beautiful-dnd

我几乎是初学者,不要对我苛刻(Thx), 我正在使用react-beautiful-dnd。 我有两列具有不同的数据。 我发现了将项目从X列移到Y列的功能。 我想要实现的是切换项目位置。 假设我单击X列中的“ item 1”,然后将其拖放到Y列的“ item 10”,我想在X列中添加“ item 10”,在Y列中添加“ item 1”。

如果有人可以帮助我解决一些很棒的代码示例

这是我的代码。

select t.* from product t
where not exists (
  select 1 
  from product p inner join vendor v
  on v.v_code = p.v_code
  where 
    p.p_price > t.p_price
    and
    v.v_state = 'FL' 
)

0 个答案:

没有答案