是否可以在插入相同值后自动递增列,并检查最大值为2的重复值,如下所示:
INSERT INTO info (name, date, sched) VALUES ('$name', '$date', '$sched')
// I want to auto increment for count column after inserting same date and sched
INSERT INTO appointment (date, sched) VALUES ('$date', '$sched')
这是我的table:
有人能帮我做到这一点,或者建议一个更好的预约安排方式吗?谢谢!
1条答案
按热度按时间w6lpcovy1#
首先,table设计如下:
然后,像这样: