MySQL how to do an if exist increment in a single query

后端 未结 3 1455
没有蜡笔的小新
没有蜡笔的小新 2021-01-02 11:19

I just wish to have a table to store a number of events by day.

Given a table:

create table totals (
    entryday date,
    total int(11) default 0 n         


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-02 11:51

    I'm not sure I understand your question, but maybe this query is your answer :

    update totals set total = total + 1 where entryday = "08-01-11"
    

提交回复
热议问题