create_referrer.txt
3 years ago
create_resource.txt
3 years ago
create_session.txt
3 years ago
create_view.txt
3 years ago
create_visitor.txt
3 years ago
get_campaign.txt
3 years ago
get_campaigns.txt
3 years ago
get_campaigns_with_woocommerce.txt
3 years ago
get_current_session.txt
3 years ago
get_current_traffic.txt
3 years ago
get_geos.txt
3 years ago
get_geos_with_woocommerce.txt
3 years ago
get_referrer.txt
3 years ago
get_referrers.txt
3 years ago
get_referrers_with_woocommerce.txt
3 years ago
get_resource.txt
3 years ago
get_resources.txt
3 years ago
get_visitors_by_minute_interval.txt
3 years ago
get_visitors_by_ten_second_interval.txt
3 years ago
create_visitor.txt
8 lines
| 1 | INSERT INTO wp_independent_analytics_visitors |
| 2 | (visitor_id, country_code, city, subdivision, country, continent) |
| 3 | VALUES (:visitor_id, :country_code, :city, :subdivision, :country, :continent) |
| 4 | ON DUPLICATE KEY UPDATE country_code = :country_code, |
| 5 | city = :city, |
| 6 | subdivision = :subdivision, |
| 7 | country = :country, |
| 8 | continent = :continent; |