select * from show_center.biz_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; 
select * from show_center.std_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; 


select show_name,count(show_name) from show_center.std_show where show_Name like '%黑小鸭%' order by update_time desc limit 10; 



select show_name from show_center.std_show 
group by show_name 
having count(show_name) >1

select * from show_center.biz_show  where show_name in (select show_name from show_center.std_show 
group by show_name 
having count(show_name) >1)
and show_name like '%黑小鸭%'

update show_center.std_show 
set is_deleted=0
where show_name in (select show_name from show_center.std_show 
group by show_name 
having count(show_name) >1)
and show_name like '%黑小鸭%'


删除演出中心的数据

删除运用推荐的数据

删除用户下单的数据和配票单的数据

select 

 

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-18
  • 2021-10-13
  • 2021-09-08
  • 2022-01-18
  • 2021-05-18
猜你喜欢
  • 2021-07-14
  • 2021-12-24
  • 2022-01-02
  • 2022-12-23
  • 2021-11-06
  • 2021-09-03
  • 2021-09-17
相关资源
相似解决方案