www.sqltutorial.org Open in urlscan Pro
2606:4700:3031::ac43:b5aa  Public Scan

Submitted URL: http://www.sqltutorial.org/
Effective URL: https://www.sqltutorial.org/
Submission: On February 20 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

GET https://www.sqltutorial.org/

<form role="search" method="get" class="search-form" action="https://www.sqltutorial.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search …" value="" name="s"> </label>
  <input type="submit" class="search-submit" value="Search"></form>

GET https://www.sqltutorial.org/

<form role="search" method="get" class="search-form" action="https://www.sqltutorial.org/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search …" value="" name="s"> </label>
  <input type="submit" class="search-submit" value="Search"></form>

Text Content

Skip to content
 * Home
 * Views
 * Triggers
 * Functions
   * Aggregate Functions
   * Window Functions
   * String Functions
   * Date Functions
   * Comparison Functions
   * Math Functions
 * SQL Cheat Sheet
 * Try It




SQL TUTORIAL

This SQL tutorial helps you get started with SQL quickly and effectively through
many practical examples.

If you are a software developer, database administrator, data analyst, or data
scientist who wants to use SQL to analyze data, this tutorial is a good start.

Each topic is covered clearly and concisely with many practical examples that
help you truly understand the concept and apply it to solve the data challenges
more effectively.

SQL stands for Structured Query Language designed to manipulate data in the
Relational Database Management Systems (RDBMS).

Today, SQL is one of the most common programming languages for interacting with
data.


SECTION 1: INTRODUCTION TO SQL

 * What is SQL – give you a brief overview of the SQL language and its popular
   dialects.
 * SQL Syntax – provide you with the syntax of the SQL language.
 * SQL Sample Database – introduce you to an HR sample database.


SECTION 2: QUERYING DATA

 * SELECT Statement – show you how to query data from a single table by using
   the simplest form of the SELECT statement.


SECTION 3: SORTING DATA

 * ORDER BY Clause – sort the data by one or more columns in the ascending
   and/or descending order.


SECTION 4: FILTERING DATA

 * DISTINCT  – show you how to remove duplicates from the result set.
 * LIMIT – constrain a number of rows returned by a query using the LIMIT and
   OFFSET clause.
 * FETCH – learn how to skip N rows in a result set before starting to return
   any rows.
 * WHERE Clause – filter data based on specified conditions.
 * Comparison operators – learn how to use the comparison operators including
   greater than, greater than or equal, less than, less than or equal, equal,
   and not equal to form the condition in the WHERE clause.
 * Logical operators – introduce the logical operators and how to use them to
   test for the truth of a condition.
 * AND operator – combine multiple Boolean expressions using the AND logical
   operator.
 * OR operator – show you how to use another logical operator OR to combine
   multiple Boolean expressions.
 * BETWEEN Operator – guide you to use the BETWEEN operator to select data
   within a range of values.
 * IN Operator – show you how to use the IN operator to check whether a value is
   in the list of values.
 * LIKE Operator –  query data based on a specified pattern.
 * IS NULL Operator – introduce the NULL concepts and show you how to check
   whether an expression is NULL or not.
 * NOT operator – show you how to negate a Boolean expression by using the NOT
   operator.


SECTION 5: CONDITIONAL EXPRESSIONS

 * CASE Expression – add if-then-else logic to the SQL statements.


SECTION 6: JOINING MULTIPLE TABLES

 * SQL Aliases – make your query shorter and more understandable.
 * INNER JOIN – introduce you to the join concept and show you how to use the
   INNER JOIN clause to combine data from multiple tables.
 * LEFT OUTER JOIN – provide you with another kind of joins that allows you to
   combine data from multiple tables.
 * FULL OUTER JOIN – join multiple tables by including rows from both tables
   whether or not the rows have matching rows from another table.
 * CROSS JOIN – produce a Cartesian product of rows of the joined tables using
   the cross join operation.
 * SELF JOIN – join a table to itself using either the inner join or left join
   clause.


SECTION 7: AGGREGATE FUNCTIONS

 * Aggregate functions – introduce you to the most commonly used aggregate
   functions in SQL including AVG, COUNT, SUM, MAX, and MIN.
 * AVG – calculate the average value of a set.
 * COUNT – return the number of items in a set.
 * SUM – return the sum of all or distinct items of a set.
 * MAX – find the maximum value in a set.
 * MIN – find the minimum value in a set.


SECTION 8: GROUPING DATA

 * GROUP BY– combine rows into groups and apply an aggregate function to each
   group.
 * HAVING – specify a condition for filtering groups summarized by the GROUP BY
   clause.
 * GROUPING SETS – generate multiple grouping sets.
 * ROLLUP – generate multiple grouping sets considering the hierarchy of the
   input columns.
 * CUBE – generate multiple grouping sets for all possible combination of the
   input columns.


SECTION 9: SET OPERATORS

 * UNION and UNION ALL – combine result sets of two or more queries into a
   single result set using the UNION and UNION ALL operators.
 * INTERSECT  – return the intersection of two or more queries using the
   INTERSECT operator.
 * MINUS – subtract a result set from another result set using the MINUS
   operator.


SECTION 10. SUBQUERY

 * Subquery – show you how to nest a query inside another query to form a more
   flexible query for querying data.
 * Correlated Subquery – introduce you to the correlated subquery which is a
   subquery that uses values from the outer query.
 * EXISTS – show you how to check for the existence of the row returned from a
   subquery.
 * ALL – illustrate how to query data by comparing values in a column of the
   table with a set of columns.
 * ANY – query data if a value in a column of a table matches one of the values
   in a set.


SECTION 11: MODIFYING DATA

 * INSERT – insert one or more rows into a table.
 * UPDATE – update existing data in a table.
 * DELETE – delete data from a table permanently.


SECTION 12: WORKING WITH TABLE STRUCTURES

 * CREATE TABLE – create a new table in the database.
 * ALTER TABLE – modify the structure of an existing table.
 * DROP TABLE – remove the tables permanently.
 * TRUNCATE TABLE – delete all data in a big table fast and efficiently.


SECTION 13: CONSTRAINTS

 * PRIMARY KEY – show you how to define a primary key for a table.
 * FOREIGN KEY – walk you through the steps of enforcing the relationship
   between data in two tables using the foreign key constraint.
 * UNIQUE – ensure the uniqueness of values in a column or a set of columns.
 * NOT NULL  – ensure that the values inserted into or updated to a column are
   not NULL.
 * CHECK – validate data before it is stored in one or more columns based on a
   Boolean expression.

Search for:


GETTING STARTED

 * What Is SQL
 * SQL Sample Database
 * SQL Syntax




SQL TUTORIAL

 * SQL SELECT
 * SQL ORDER BY
 * SQL DISTINCT
 * SQL LIMIT
 * SQL FETCH
 * SQL WHERE
 * SQL Comparison Operators
 * SQL Logical Operators
 * SQL AND
 * SQL OR
 * SQL BETWEEN
 * SQL IN
 * SQL LIKE
 * SQL NOT
 * SQL IS NULL
 * SQL Alias
 * SQL INNER JOIN
 * SQL LEFT JOIN
 * SQL SELF JOIN
 * SQL FULL OUTER JOIN
 * SQL CROSS JOIN
 * SQL GROUP BY
 * SQL GROUPING SETS
 * SQL ROLLUP
 * SQL CUBE
 * SQL HAVING
 * SQL Subquery
 * SQL Correlated Subquery
 * SQL ALL
 * SQL ANY
 * SQL EXISTS
 * SQL UNION
 * SQL INTERSECT
 * SQL CASE
 * SQL MINUS
 * SQL INSERT
 * SQL UPDATE
 * SQL DELETE


SQL AGGREGATE FUNCTIONS

 * SQL AVG
 * SQL COUNT
 * SQL MAX
 * SQL MIN
 * SQL SUM




MANAGING DATABASE OBJECTS

 * SQL Data Types
 * SQL CREATE TABLE
 * SQL Identity
 * SQL Auto Increment
 * SQL ALTER TABLE
 * SQL ADD COLUMN
 * SQL DROP COLUMN
 * SQL DROP TABLE
 * SQL TRUNCATE TABLE


SQL CONSTRAINTS

 * SQL Primary Key
 * SQL Foreign Key
 * SQL UNIQUE Constraint
 * SQL CHECK Constraint
 * SQL NOT NULL Constraint




ABOUT SQL TUTORIAL

SQLTutorial.org helps you master the SQL language quickly through the use of
simple yet practical examples, accompanied by easy-to-understand explanations.
Search for:


LATEST TUTORIALS

 * SQL Sample Database
 * SQL DROP COLUMN
 * SQL Identity
 * SQL Auto Increment
 * SQL ADD COLUMN


SITE LINKS

 * Home
 * Contact Us
 * Privacy Policy

Copyright © 2009 - Present by www.sqltutorial.org. All Rights Reserved.





SQL TUTORIAL ASKS FOR YOUR CONSENT TO USE YOUR PERSONAL DATA TO:

 * perm_identity
   Personalised advertising and content, advertising and content measurement,
   audience research and services development
 * devices
   Store and/or access information on a device

expand_moreremove
Learn more
 * 
   How can I change my choice?
 * 
   What if I don't consent?
 * 
   How does legitimate interest work?
 * 
   Do I have to consent to everything?

Your personal data will be processed and information from your device (cookies,
unique identifiers, and other device data) may be stored by, accessed by and
shared with 142 TCF vendor(s) and 82 ad partner(s), or used specifically by this
site or app.

Some vendors may process your personal data on the basis of legitimate interest,
which you can object to by managing your options below. Look for a link at the
bottom of this page or in our privacy policy where you can withdraw consent.

Consent



Manage options

arrow_back

Data preferences


MANAGE YOUR DATA

You can choose how your personal data is used. Vendors want your permission to
do the following:

TCF vendors

help_outline


STORE AND/OR ACCESS INFORMATION ON A DEVICE

Cookies, device or similar online identifiers (e.g. login-based identifiers,
randomly assigned identifiers, network based identifiers) together with other
information (e.g. browser type and information, language, screen size, supported
technologies etc.) can be stored or read on your device to recognise it each
time it connects to an app or to a website, for one or several of the purposes
presented here.

View details
Consent (125 vendors)


USE LIMITED DATA TO SELECT ADVERTISING

Advertising presented to you on this service can be based on limited data, such
as the website or app you are using, your non-precise location, your device type
or which content you are (or have been) interacting with (for example, to limit
the number of times an ad is presented to you).

View details
Consent (77 vendors)Legitimate interest (32 vendors)help_outline


CREATE PROFILES FOR PERSONALISED ADVERTISING

Information about your activity on this service (such as forms you submit,
content you look at) can be stored and combined with other information about you
(for example, information from your previous activity on this service and other
websites or apps) or similar users. This is then used to build or improve a
profile about you (that might include possible interests and personal aspects).
Your profile can be used (also later) to present advertising that appears more
relevant based on your possible interests by this and other entities.

View details
Consent (102 vendors)


USE PROFILES TO SELECT PERSONALISED ADVERTISING

Advertising presented to you on this service can be based on your advertising
profiles, which can reflect your activity on this service or other websites or
apps (like the forms you submit, content you look at), possible interests and
personal aspects.

View details
Consent (98 vendors)


CREATE PROFILES TO PERSONALISE CONTENT

Information about your activity on this service (for instance, forms you submit,
non-advertising content you look at) can be stored and combined with other
information about you (such as your previous activity on this service or other
websites or apps) or similar users. This is then used to build or improve a
profile about you (which might for example include possible interests and
personal aspects). Your profile can be used (also later) to present content that
appears more relevant based on your possible interests, such as by adapting the
order in which content is shown to you, so that it is even easier for you to
find content that matches your interests.

View details
Consent (35 vendors)


USE PROFILES TO SELECT PERSONALISED CONTENT

Content presented to you on this service can be based on your content
personalisation profiles, which can reflect your activity on this or other
services (for instance, the forms you submit, content you look at), possible
interests and personal aspects. This can for example be used to adapt the order
in which content is shown to you, so that it is even easier for you to find
(non-advertising) content that matches your interests.

View details
Consent (29 vendors)


MEASURE ADVERTISING PERFORMANCE

Information regarding which advertising is presented to you and how you interact
with it can be used to determine how well an advert has worked for you or other
users and whether the goals of the advertising were reached. For instance,
whether you saw an ad, whether you clicked on it, whether it led you to buy a
product or visit a website, etc. This is very helpful to understand the
relevance of advertising campaigns.

View details
Consent (80 vendors)Legitimate interest (49 vendors)help_outline


MEASURE CONTENT PERFORMANCE

Information regarding which content is presented to you and how you interact
with it can be used to determine whether the (non-advertising) content e.g.
reached its intended audience and matched your interests. For instance, whether
you read an article, watch a video, listen to a podcast or look at a product
description, how long you spent on this service and the web pages you visit etc.
This is very helpful to understand the relevance of (non-advertising) content
that is shown to you.

View details
Consent (32 vendors)Legitimate interest (16 vendors)help_outline


UNDERSTAND AUDIENCES THROUGH STATISTICS OR COMBINATIONS OF DATA FROM DIFFERENT
SOURCES

Reports can be generated based on the combination of data sets (like user
profiles, statistics, market research, analytics data) regarding your
interactions and those of other users with advertising or (non-advertising)
content to identify common characteristics (for instance, to determine which
target audiences are more receptive to an ad campaign or to certain contents).

View details
Consent (59 vendors)Legitimate interest (22 vendors)help_outline


DEVELOP AND IMPROVE SERVICES

Information about your activity on this service, such as your interaction with
ads or content, can be very helpful to improve products and services and to
build new products and services based on user interactions, the type of
audience, etc. This specific purpose does not include the development or
improvement of user profiles and identifiers.

View details
Consent (66 vendors)Legitimate interest (40 vendors)help_outline


USE LIMITED DATA TO SELECT CONTENT

Content presented to you on this service can be based on limited data, such as
the website or app you are using, your non-precise location, your device type,
or which content you are (or have been) interacting with (for example, to limit
the number of times a video or an article is presented to you).

View details
Consent (11 vendors)Legitimate interest (3 vendors)help_outline


ENSURE SECURITY, PREVENT AND DETECT FRAUD, AND FIX ERRORS

help_outline

Your data can be used to monitor for and prevent unusual and possibly fraudulent
activity (for example, regarding advertising, ad clicks by bots), and ensure
systems and processes work properly and securely. It can also be used to correct
any problems you, the publisher or the advertiser may encounter in the delivery
of content and ads and in your interaction with them.

View details


DELIVER AND PRESENT ADVERTISING AND CONTENT

help_outline

Certain information (like an IP address or device capabilities) is used to
ensure the technical compatibility of the content or advertising, and to
facilitate the transmission of the content or ad to your device.

View details


MATCH AND COMBINE DATA FROM OTHER DATA SOURCES

help_outline

Information about your activity on this service may be matched and combined with
other information relating to you and originating from various sources (for
instance your activity on a separate online service, your use of a loyalty card
in-store, or your answers to a survey), in support of the purposes explained in
this notice.

View details


LINK DIFFERENT DEVICES

help_outline

In support of the purposes explained in this notice, your device might be
considered as likely linked to other devices that belong to you or your
household (for instance because you are logged in to the same service on both
your phone and your computer, or because you may use the same Internet
connection on both devices).

View details


IDENTIFY DEVICES BASED ON INFORMATION TRANSMITTED AUTOMATICALLY

help_outline

Your device might be distinguished from other devices based on information it
automatically sends when accessing the Internet (for instance, the IP address of
your Internet connection or the type of browser you are using) in support of the
purposes exposed in this notice.

View details


USE PRECISE GEOLOCATION DATA

With your acceptance, your precise location (within a radius of less than 500
metres) may be used in support of the purposes explained in this notice.

View details
Consent

Vendor preferences

Accept all



Confirm choices

arrow_back

Vendor preferences


CONFIRM OUR VENDORS

Vendors can use your data to provide services. Declining a vendor can stop them
from using the data you shared.

TCF vendors

help_outline


EXPONENTIAL INTERACTIVE, INC D/B/A VDX.TV

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ROQ.AD GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ADMAXIM LIMITED

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


INDEX EXCHANGE INC.

Cookie duration: 395 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


QUANTCAST

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BEESWAXIO CORPORATION

Cookie duration: 395 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


SOVRN, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices, Users’
profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


ADIKTEEV

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Authentication-derived identifiers, Device characteristics, Users’
profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RTB HOUSE S.A.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


THE UK TRADE DESK LTD

Cookie duration: 3629 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADMETRICS GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Consent


NEXXEN INC.

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EPSILON

Cookie duration: 184 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


YAHOO EMEA LIMITED

Cookie duration: 397 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ADVENTORI SAS

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


TRIPLELIFT, INC.

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


XANDR, INC.

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEORY GMBH

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


NEXXEN GROUP LLC

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEURAL.ONE

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


ADITION (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ACTIVE AGENT (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


TABOOLA EUROPE LIMITED

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


EQUATIV

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


ADFORM A/S

Cookie duration: 1 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RATEGAIN ADARA INC

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more




View details | Storage details | Privacy policylaunch
Consent


SIFT MEDIA, INC

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics

more




View details | Privacy policylaunch
Consent


RAKUTEN MARKETING LLC

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LUMEN RESEARCH LIMITED

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


AMAZON AD SERVER

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OPENX

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


YIELDLAB (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ROKU ADVERTISING SERVICES

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SIMPLIFI HOLDINGS LLC

Cookie duration: 366 (days).

Data collected and processed: IP addresses, Device identifiers, Precise location
data

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


PUBMATIC, INC

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


COMSCORE B.V.

Cookie duration: 720 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Authentication-derived identifiers, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


FLASHTALKING

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more




View details | Privacy policylaunch
Consent


SHARETHROUGH, INC

Cookie duration: 30 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Authentication-derived identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PULSEPOINT, INC.

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers, Device
characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


SMAATO, INC.

Cookie duration: 21 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SEMASIO GMBH

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CRIMTAN HOLDINGS LIMITED

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GENIUS SPORTS UK LIMITED

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


CRITEO SA

Cookie duration: 390 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADLOOX SA

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics,
Probabilistic identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BLIS GLOBAL LIMITED

Cookie duration: 400 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


LOTAME SOLUTIONS, INC

Cookie duration: 274 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Authentication-derived identifiers, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


LIVERAMP

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


GROUPM UK LIMITED

Cookie duration: 395 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SONOBI, INC

Cookie duration: 60 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LOOPME LIMITED

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


DYNATA LLC

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ASK LOCALA

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


NEAR INTELLIGENCE

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DOUBLEVERIFY INC.

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


BIDSWITCH GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


IPONWEB GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NEXTROLL, INC.

Cookie duration: 183 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


TEADS FRANCE SAS

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


STRÖER SSP GMBH (SSP)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OS DATA SOLUTIONS GMBH &AMP; CO. KG

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PERMODO GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


PLATFORM161 B.V.

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MEDIA.NET ADVERTISING FZ-LLC

Cookie duration: 2190 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADACADO TECHNOLOGIES INC. (DBA ADACADO)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


BASIS GLOBAL TECHNOLOGIES, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SMADEX, S.L.U.

Cookie duration: 365 (days).

Data collected and processed: User-provided data, IP addresses, Non-precise
location data, Device identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


BOMBORA INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EASYMEDIA GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


YIELDMO, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


REMERGE GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADVANCED STORE GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE CTV, INC.

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DELTA PROJECTS AB

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


USEMAX ADVERTISEMENT (EMEGO GMBH)

Cookie duration: 365 (days).

Data collected and processed: Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


EMETRIQ GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


PUBLICIS MEDIA GMBH

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


M.D. PRIMIS TECHNOLOGIES LTD.

Cookie duration: 25 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ONETAG LIMITED

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


CLOUD TECHNOLOGIES S.A.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


SMARTOLOGY LIMITED

Doesn't use cookies.

Data collected and processed: IP addresses

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


IMPROVE DIGITAL

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DT EXCHANGE (FYBER MONETIZATION LTD.)

Doesn't use cookies.

Data collected and processed: IP addresses, Device identifiers, Device
characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


ADOBE ADVERTISING CLOUD

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers,
Authentication-derived identifiers, Privacy choices

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BANNERFLOW AB

Cookie duration: 366 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
characteristics, Privacy choices

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TABMO SAS

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


INTEGRAL AD SCIENCE (INCORPORATING ADMANTX)

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


WIZALY

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Authentication-derived identifiers, Device
characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


WEBORAMA

Cookie duration: 393 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


JIVOX CORPORATION

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Privacy
choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


SAGE&#43;ARCHER BV

Doesn't use cookies.

Data collected and processed: Non-precise location data

more




View details | Privacy policylaunch
Consent


ON DEVICE RESEARCH LIMITED

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics

more




View details | Storage details | Privacy policylaunch
Consent


ROCKABOX MEDIA LTD

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics

more




View details | Storage details | Privacy policylaunch
Legitimate interesthelp_outline


MOBFOX US LLC

Cookie duration: 14 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


EXACTAG GMBH

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Authentication-derived identifiers, Device characteristics,
Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CELTRA INC.

Doesn't use cookies.

Data collected and processed: IP addresses, Device identifiers, Precise location
data, Device characteristics

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MAINADV SRL

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


GEMIUS SA

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, Device identifiers,
Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


INMOBI PTE LTD

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


THE KANTAR GROUP LIMITED

Cookie duration: 914 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


NIELSEN MEDIA RESEARCH LTD.

Cookie duration: 120 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SOLOCAL SA

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PIXALATE, INC.

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics

more




View details | Storage details | Privacy policylaunch
Consent


ORACLE ADVERTISING

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NUMBERLY

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


AUDIENCEPROJECT APS

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DEMANDBASE, INC.

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


EFFILIATION / EFFINITY

Cookie duration: 2 (days).

Data collected and processed: Device characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


SEENTHIS AB

Doesn't use cookies.

Data collected and processed: IP addresses, Device characteristics

more




View details | Privacy policylaunch


COMMANDERS ACT

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers

more




View details | Storage details | Privacy policylaunch
Consent


TRAVEL AUDIENCE GMBH

Cookie duration: 397 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


HUMAN

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics, Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


ADLUDIO LTD.

Doesn't use cookies.

Data collected and processed: Device characteristics

more




View details | Privacy policylaunch
Consent


BLENDEE SRL

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


INNOVID LLC

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PAPIRFLY AS

Doesn't use cookies.

Data collected and processed: Device characteristics

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


NEUSTAR, INC., A TRANSUNION COMPANY

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


VERVE GROUP EUROPE GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


OTTO (GMBH &AMP; CO KG)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADOBE AUDIENCE MANAGER, ADOBE EXPERIENCE PLATFORM

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


LOCALSENSOR B.V.

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


ONLINE SOLUTION

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


RELAY42 NETHERLANDS B.V.

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
Consent


GP ONE GMBH

Cookie duration: Uses session cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


THE MEDIAGRID INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MINDTAKE RESEARCH GMBH

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Users’ profiles, Probabilistic
identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


CINT AB

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Consent


GOOGLE ADVERTISING PRODUCTS

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GFK GMBH

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


REVJET

Cookie duration: 730 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


PROTECTED MEDIA LTD

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


CLINCH LABS LTD

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ORACLE DATA CLOUD - MOAT

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


HEARTS AND SCIENCE MÜNCHEN GMBH

Cookie duration: 60 (days).

Data collected and processed: IP addresses

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


AMAZON ADVERTISING

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MOLOCO, INC.

Cookie duration: 730 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADTRIBA GMBH

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


OBJECTIVE PARTNERS BV

Cookie duration: 90 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ENSIGHTEN

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Legitimate interesthelp_outline


EBAY INC

Cookie duration: 90 (days).

Data collected and processed: IP addresses, Device characteristics, Privacy
choices

more




View details | Storage details | Privacy policylaunch
Consent


HURRA COMMUNICATIONS GMBH

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent

Ad partners

help_outline


GSKINNER

Privacy policylaunch
Consent


AKAMAI

Privacy policylaunch
Consent


FACEBOOK

Privacy policylaunch
Consent


AUNICA

Privacy policylaunch
Consent


BOOKING.COM

Privacy policylaunch
Consent


C3 METRICS

Privacy policylaunch
Consent


IBM

Privacy policylaunch
Consent


EVIDON

Privacy policylaunch
Consent


CUBED

Privacy policylaunch
Consent


OPTOMATON

Privacy policylaunch
Consent


INTELLIAD

Privacy policylaunch
Consent


FLUCT

Privacy policylaunch
Consent


ZUCKS

Privacy policylaunch
Consent


ANALIGHTS

Privacy policylaunch
Consent


DSTILLERY

Privacy policylaunch
Consent


MEDIAMATH

Privacy policylaunch
Consent


ZMS

Privacy policylaunch
Consent


DENTSU AEGIS NETWORK

Privacy policylaunch
Consent


IGNITION ONE

Privacy policylaunch
Consent


OMNICOM MEDIA GROUP

Privacy policylaunch
Consent


DIGISEG

Privacy policylaunch
Consent


PLATFORMONE

Privacy policylaunch
Consent


RESONATE

Privacy policylaunch
Consent


SOJERN

Privacy policylaunch
Consent


HAENSEL AMS

Privacy policylaunch
Consent


BDSK HANDELS GMBH & CO. KG

Privacy policylaunch
Consent


TRADEDOUBLER AB

Privacy policylaunch
Consent


TRUSTARC

Privacy policylaunch
Consent


TRUEFFECT

Privacy policylaunch
Consent


SUPERSHIP

Privacy policylaunch
Consent


MARKETING SCIENCE CONSULTING GROUP, INC.

Privacy policylaunch
Consent


DENTSU

Privacy policylaunch
Consent


SNAP INC.

Privacy policylaunch
Consent


ESSENS

Privacy policylaunch
Consent


TRAVEL DATA COLLECTIVE

Privacy policylaunch
Consent


ADVOLUTION.CONTROL

Privacy policylaunch
Consent


WIDESPACE

Privacy policylaunch
Consent


LIFESTREET

Privacy policylaunch
Consent


VIMEO

Privacy policylaunch
Consent


ADCOLONY

Privacy policylaunch
Consent


IRONSOURCE MOBILE

Privacy policylaunch
Consent


CHARTBOOST

Privacy policylaunch
Consent


BATCH MEDIA

Privacy policylaunch
Consent


VODAFONE GMBH

Privacy policylaunch
Consent


MAGNITE

Privacy policylaunch
Consent


SCENESTEALER

Privacy policylaunch
Consent


NETQUEST

Privacy policylaunch
Consent


PANGLE DSP

Privacy policylaunch
Consent


MAIL.RU

Privacy policylaunch
Consent


MANAGE.COM

Privacy policylaunch
Consent


CLOUDFLARE

Privacy policylaunch
Consent


SALESFORCE DMP

Privacy policylaunch
Consent


UNITY ADS

Privacy policylaunch
Consent


HAVAS MEDIA FRANCE - DBI

Privacy policylaunch
Consent


NETFLIX

Privacy policylaunch
Consent


MACROMILL GROUP

Privacy policylaunch
Consent


EBUILDERS

Privacy policylaunch
Consent


APPLOVIN CORP.

Privacy policylaunch
Consent


EMX DIGITAL

Privacy policylaunch
Consent


NANO INTERACTIVE

Privacy policylaunch
Consent


FRACTIONAL MEDIA

Privacy policylaunch
Consent


RACKSPACE

Privacy policylaunch
Consent


LIFTOFF

Privacy policylaunch
Consent


MSI-ACI

Privacy policylaunch
Consent


ARRIVALIST

Privacy policylaunch
Consent


CHOCOLATE PLATFORM

Privacy policylaunch
Consent


NAVEGG

Privacy policylaunch
Consent


ADMEDO

Privacy policylaunch
Consent


KOCHAVA

Privacy policylaunch
Consent


LEADBOLT

Privacy policylaunch
Consent


MOBITRANS

Privacy policylaunch
Consent


ADEX

Privacy policylaunch
Consent


IMPACT

Privacy policylaunch
Consent


SPOTAD

Privacy policylaunch
Consent


AARKI

Privacy policylaunch
Consent


F@N COMMUNICATIONS

Privacy policylaunch
Consent


SFR

Privacy policylaunch
Consent


CABLATO

Privacy policylaunch
Consent


WAYSTACK

Privacy policylaunch
Consent


VPON

Privacy policylaunch
Consent


TRESENSA

Privacy policylaunch
Consent


TAPJOY

Privacy policylaunch
Consent

Accept all



Confirm choices

Close