我有这张桌子:
create table comment_check (
record_id int ( 10 ) unique not null AUTO_INCREMENT ,
member_id int (10) not null unique ,
has_question_comment bool ,
has_business_comment bool
);
而这个更新:
INSERT INTO comment_check
(member_id , has_question_comment )
VALUES
(4815162342, 1 )
ON DUPLICATE KEY UPDATE
has_question_comment = 1
但是我感到困惑的是我有两个键, record_id 和 member_id ,这是真正的键。创建表时,是否应该将 member_id 列标记为键?以及如何区分查询中的两个键(member_id 和 record_id)?
谢谢!