Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

आज, इस सप्ताह, पिछले महीने और कुल [MySQL क्वेरी] तक विज़िट की गणना करें

इन्हें आज़माएं। मुझे नहीं पता कि आपकी तालिका को क्या कहा जाता है इसलिए मैंने इसे trafficTable के रूप में संदर्भित किया है :

-- Visits today
select count(*) as visits_today
from trafficTable tt
where tt.type != 'click'
and tt.id_user = '19d71'
and datetime >= curdate();

-- Visits this week
select count(*) as visits_this_week
from trafficTable tt
where tt.type != 'click'
and tt.id_user = '19d71'
and yearweek(datetime) = yearweek(curdate());

-- Visits this month
select count(*) as visits_this_month
from trafficTable tt
where tt.type != 'click'
and tt.id_user = '19d71'
and year(datetime) = year(curdate())
and month(datetime) = month(curdate());

-- Total visits
select count(*) as total_visits
from trafficTable tt
where tt.type != 'click'
and tt.id_user = '19d71';

--- if you want the last month - this help other ppl in other thread
    select count(*) as visits_this_month
    from trafficTable tt
    where tt.type != 'click'
    and tt.id_user = '19d71'
    and year(datetime) <= year(curdate())
    and month(datetime) <= month(curdate());


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. मैं mysql में अपने कंप्यूटर पर csv फ़ाइल कैसे निर्यात करूं?

  2. मैसकल फुलटेक्स्ट बूलियन सर्च - प्रासंगिकता और एक और फील्ड के आधार पर छाँटें

  3. पायथन के MySqlDB को अद्यतन पंक्ति नहीं मिल रही है

  4. MySQL जहां अधिकतम तिथि और अधिकतम समय चुनें

  5. JSON jparser पर ऐप क्रैश http अनुरोध करें