我需要一个如果,然后,在mysql查询,
尝试了下面,
if exists( select * from data_table where user_id =1 and link_id = 1) then update data_table set is_view = 1 where user_id = 1 else insert into data_table...
正确的方法是什么?
若您只需要在mysql中执行此操作,那个么在重复键上搜索insert。也可以使用存储过程。检查插入。。。关于重复密钥更新语法
insert into data_table (user_id, link_id, other_column)
values (1, 1, 'value to insert or uodate')
on duplicate key update other_column='value to insert or update';