www.postgresqltutorial.com
Open in
urlscan Pro
2606:4700:3033::ac43:8181
Public Scan
Submitted URL: http://www.postgresqltutorial.com/
Effective URL: https://www.postgresqltutorial.com/
Submission: On November 25 via api from US — Scanned from DE
Effective URL: https://www.postgresqltutorial.com/
Submission: On November 25 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMGET https://www.postgresqltutorial.com/
<form role="search" method="get" class="search-form" action="https://www.postgresqltutorial.com/"> <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 * Getting Started * Advanced * Views * Indexes * Triggers * PL/pgSQL * Functions * Aggregate Functions * Window Functions * Date Functions * String Functions * Math Functions * API * PostgreSQL PHP * PostgreSQL Python * PostgreSQL JDBC * Administration POSTGRESQL TUTORIAL Welcome to the PostgreSQLTutorial.com website! This PostgreSQL tutorial helps you understand PostgreSQL quickly. You’ll master PostgreSQL very fast through many practical examples and apply the knowledge in developing applications using PostgreSQL. If you are… * Looking to learn PostgreSQL fast. * Developing applications using PostgreSQL as the back-end database management system. * Migrating from other database management systems such as MySQL, Oracle, and Microsoft SQL Server to PostgreSQL. You’ll find all you need to know to get started with PostgreSQL quickly and effectively here on this website. PostgreSQL tutorial demonstrates many unique features of PostgreSQL that make it the most advanced open-source database management system. GETTING STARTED WITH POSTGRESQL This section helps you get started with PostgreSQL by showing you how to install PostgreSQL on Windows, Linux, and macOS. You also learn how to connect to PostgreSQL using the psql tool as well as how to load a sample database into the PostgreSQL for practicing. BASIC POSTGRESQL TUTORIAL First, you’ll learn how to query data from a single table using basic data querying techniques, which include selecting data, sorting result sets, and filtering rows. Then, you’ll learn about advanced queries such as joining multiple tables, using set operations, and constructing the subquery. Finally, you will learn how to manage database tables, such as creating a new table or modifying an existing table’s structure. SECTION 1. QUERYING DATA * Select – show you how to query data from a single table. * Column aliases – learn how to assign temporary names to columns or expressions in a query. * Order By – guide you on how to sort the result set returned from a query. * Select Distinct – provide you with a clause that removes duplicate rows in the result set. SECTION 2. FILTERING DATA * Where – filter rows based on a specified condition. * Limit – get a subset of rows generated by a query. * Fetch– limit the number of rows returned by a query. * In – select data that matches any value in a list of values. * Between – select data that is a range of values. * Like – filter data based on pattern matching. * Is Null – check if a value is null or not. SECTION 3. JOINING MULTIPLE TABLES * Joins – show you a brief overview of joins in PostgreSQL. * Table aliases – describes how to use table aliases in the query. * Inner Join – select rows from one table that have the corresponding rows in other tables. * Left Join – select rows from one table that may or may not have the corresponding rows in other tables. * Self-join – join a table to itself by comparing a table to itself. * Full Outer Join – use the full join to find a row in a table that does not have a matching row in another table. * Cross Join – produce a Cartesian product of the rows in two or more tables. * Natural Join – join two or more tables using implicit join conditions based on the common column names in the joined tables. SECTION 4. GROUPING DATA * Group By – divide rows into groups and apply an aggregate function on each. * Having – apply conditions to groups. SECTION 5. SET OPERATIONS * Union – combine result sets of multiple queries into a single result set. * Intersect – combine the result sets of two or more queries and returns a single result set that has the rows appear in both result sets. * Except – return the rows in the first query that does not appear in the output of the second query. SECTION 6. GROUPING SETS, CUBE, AND ROLLUP * Grouping Sets – generate multiple grouping sets in reporting. * Cube – define multiple grouping sets that include all possible combinations of dimensions. * Rollup – generate reports that contain totals and subtotals. SECTION 7. SUBQUERY * Subquery – write a query nested inside another query. * ANY – retrieve data by comparing a value with a set of values returned by a subquery. * ALL – query data by comparing a value with a list of values returned by a subquery. * EXISTS – check for the existence of rows returned by a subquery. SECTION 8. COMMON TABLE EXPRESSIONS * PostgreSQL CTE – introduce you to PostgreSQL common table expressions or CTEs. * Recursive query using CTEs – discuss the recursive query and learn how to apply it in various contexts. SECTION 9. MODIFYING DATA In this section, you will learn how to insert data into a table with the INSERT statement, modify existing data with the UPDATE statement, and remove data with the DELETE statement. Besides, you learn how to use the upsert statement to merge data. * Insert – guide you on how to insert a single row into a table. * Insert multiple rows – show you how to insert multiple rows into a table. * Update – update existing data in a table. * Update join – update values in a table based on values in another table. * Delete – delete data in a table. * Upsert – insert or update data if the new row already exists in the table. SECTION 10. TRANSACTIONS * PostgreSQL Transactions – show you how to handle transactions in PostgreSQL using BEGIN, COMMIT, and ROLLBACK statements. SECTION 11. IMPORT & EXPORT DATA You will learn how to import and export PostgreSQL data from and to CSV file format using the copy command. * Import CSV file into Table – show you how to import CSV file into a table. * Export PostgreSQL Table to CSV file – show you how to export tables to a CSV file. SECTION 12. MANAGING TABLES In this section, you will start exploring the PostgreSQL data types and show you how to create new tables and modify the structure of the existing tables. * Data types – cover the most commonly used PostgreSQL data types. * Create a table – guide you on how to create a new table in the database. * Select Into & Create table as– shows you how to create a new table from the result set of a query. * Auto-increment column with SERIAL – uses SERIAL to add an auto-increment column to a table. * Sequences – introduce you to sequences and describe how to use a sequence to generate a sequence of numbers. * Identity column – show you how to use the identity column. * Alter table – modify the structure of an existing table. * Rename table – change the name of the table to a new one. * Add column – show you how to add one or more columns to an existing table. * Drop column – demonstrate how to drop a column of a table. * Change column data type – show you how to change the data of a column. * Rename column – illustrate how to rename one or more columns of a table. * Drop table – remove an existing table and all of its dependent objects. * Truncate table – remove all data in a large table quickly and efficiently. * Temporary table – show you how to use the temporary table. * Copy a table – show you how to copy a table to a new one. SECTION 13. UNDERSTANDING POSTGRESQL CONSTRAINTS * Primary key – illustrate how to define a primary key when creating a table or adding a primary key to an existing table. * Foreign key – show you how to define foreign key constraints when creating a new table or add foreign key constraints for existing tables. * CHECK constraint – add logic to check value based on a Boolean expression. * UNIQUE constraint – make sure that values in a column or a group of columns are unique across the table. * NOT NULL constraint – ensure values in a column are not NULL. SECTION 14. POSTGRESQL DATA TYPES IN DEPTH * Boolean – store TRUE and FALSE values with the Boolean data type. * CHAR, VARCHAR and TEXT – learn how to use various character types including CHAR, VARCHAR, and TEXT. * NUMERIC – show you how to use NUMERIC type to store values that precision is required. * Integer – introduce you to various integer types in PostgreSQL including SMALLINT, INT and BIGINT. * DATE – introduce the DATE data type for storing date values. * Timestamp – understand timestamp data types quickly. * Interval – show you how to use interval data type to handle a period effectively. * TIME – use the TIME datatype to manage the time of day values. * UUID – guide you on how to use UUID datatype and how to generate UUID values using supplied modules. * Array – show you how to work with the array and introduces you to some handy functions for array manipulation. * hstore – introduce you to data type which is a set of key/value pairs stored in a single value in PostgreSQL. * JSON – illustrate how to work with JSON data type and shows you how to use some of the most important JSON operators and functions. * User-defined data types – show you how to use the CREATE DOMAIN and CREATE TYPE statements to create user-defined data types. SECTION 15. CONDITIONAL EXPRESSIONS & OPERATORS * CASE – show you how to form conditional queries with CASE expression. * COALESCE – return the first non-null argument. You can use it to substitute NULL by a default value. * NULLIF – return NULL if the first argument equals the second one. * CAST – convert from one data type into another e.g., from a string into an integer, from a string into a date. SECTION 16. POSTGRESQL UTILITIES * psql commands – show you the most common psql commands that help you interact with psql faster and more effectively. SECTION 17. POSTGRESQL RECIPES * How to compare two tables – describe how to compare data in two tables in a database. * How to delete duplicate rows in PostgreSQL – show you various ways to delete duplicate rows from a table. * How to generate a random number in a range – illustrate how to generate a random number in a specific range. * EXPLAIN statement– guide you on how to use the EXPLAIN statement to return the execution plan of a query. * PostgreSQL vs. MySQL – compare PostgreSQL with MySQL in terms of functionalities. ADVANCED POSTGRESQL TUTORIAL This advanced PostgreSQL tutorial covers the advanced concepts including stored procedures, indexes, views, triggers, and database administrations. POSTGRESQL PL/PGSQL This PostgreSQL stored procedures section shows you step by step how to develop PostgreSQL user-defined functions using PL/pgSQL procedural language. POSTGRESQL TRIGGERS This section provides you with PostgreSQL trigger concept and shows how to manage triggers in PostgreSQL. POSTGRESQL VIEWS We will introduce you to the database views concept and show you how to manage views such as create, alter, and remove views from the database. POSTGRESQL INDEXES PostgreSQL indexes are effective tools to enhance database performance. Indexes help the database server find specific rows much faster than it could do without indexes. POSTGRESQL ADMINISTRATION PostgreSQL administration covers the most important activities for PostgreSQL database server including roles and databases management, backup and restore. Search for: POSTGRESQL QUICK START * What is PostgreSQL? * PostgreSQL Sample Database * Install PostgreSQL on Windows * Connect to Database * Load Sample Database * Install PostgreSQL on macOS * Install PostgreSQL on Linux POSTGRESQL FUNDAMENTALS * SELECT * Column Aliases * ORDER BY * SELECT DISTINCT * WHERE * LIMIT * FETCH * IN * BETWEEN * LIKE * IS NULL * Table Aliases * Joins * INNER JOIN * LEFT JOIN * RIGHT JOIN * SELF-JOIN * FULL OUTER JOIN * Cross Join * Natural Join * GROUP BY * UNION * INTERSECT * HAVING * GROUPING SETS * CUBE * ROLLUP * Subquery * ANY * ALL * EXISTS * INSERT * INSERT Multiple Rows * UPDATE * UPDATE Join * DELETE * DELETE Join * Upsert MANAGING TABLES * PostgreSQL Data Types * Create Table * Select Into * Create Table As * SERIAL * Sequences * Identity Column * Alter Table * Rename Table * Add Column * Drop Column * Change Column’s Data Type * Rename Column * Drop Table * Temporary Table * Truncate Table DATABASE CONSTRAINTS * Primary Key * Foreign Key * CHECK Constraint * UNIQUE Constraint * NOT NULL Constraint POSTGRESQL DATA TYPES * Boolean * CHAR, VARCHAR, and TEXT * NUMERIC * Integer * SERIAL * DATE * TIMESTAMP * Interval * TIME * UUID * JSON * HSTORE * Array * User-defined Data Types CONDITIONAL EXPRESSIONS & OPERATORS * CASE * COALESCE * NULLIF * CAST ABOUT POSTGRESQLTUTORIAL.COM PostgreSQLTutorial.com provides you with useful PostgreSQL tutorials to help you up-to-date with the latest PostgreSQL features and technologies. All PostgreSQL tutorials are simple, easy-to-follow and practical. LATEST TUTORIALS * PostgreSQL EXCEPT * PostgreSQL Exception * PL/pgSQL Continue * PL/pgSQL Exit Statement * PostgreSQL Python: Call PostgreSQL Functions * PostgreSQL Drop View * Enable Triggers SITE INFO * Donation ❤️ * Home * PostgreSQL Cheat Sheet * Resources * About Us * Contact Us * Privacy Policy Copyright © 2011 - Present by PostgreSQL Tutorial Website. All Rights Reserved. POSTGRESQL 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 143 TCF vendor(s) and 83 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 (127 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 (76 vendors)Legitimate interest (34 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 (104 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 (100 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 (36 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, such as by adapting 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 (81 vendors)Legitimate interest (50 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 (33 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 (60 vendors)Legitimate interest (21 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 (68 vendors)Legitimate interest (38 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 (10 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ROQ.AD GMBH Cookie duration: 365 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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, Probabilistic identifiers, IP addresses more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent INDEX EXCHANGE INC. Cookie duration: 395 (days). Data collected and processed: Users’ profiles, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline SOVRN, INC. Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline ADIKTEEV Doesn't use cookies. Data collected and processed: Users’ profiles, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline THE UK TRADE DESK LTD Cookie duration: 3629 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ADMETRICS GMBH Doesn't use cookies. Data collected and processed: Browsing and interaction data, IP addresses, Privacy choices, Device characteristics more View details | Privacy policylaunch Consent AMOBEE INC. Cookie duration: 180 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline YAHOO EMEA LIMITED Cookie duration: 397 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ADVENTORI SAS Cookie duration: 90 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, User-provided data, Authentication-derived identifiers more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline TRIPLELIFT, INC. Cookie duration: 90 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline UNRULY GROUP LLC Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics 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, Non-precise location data, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ADITION (VIRTUAL MINDS GMBH) Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ACTIVE AGENT (VIRTUAL MINDS GMBH) Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline TABOOLA EUROPE LIMITED Cookie duration: 366 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline SMART ADSERVER Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics more Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ADFORM A/S Cookie duration: 1 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline MAGNITE, INC. Cookie duration: 365 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline SIFT MEDIA, INC Doesn't use cookies. Data collected and processed: Non-precise location data, Device identifiers, IP addresses, Precise location data, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline RAKUTEN MARKETING LLC Cookie duration: 730 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, IP addresses, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline AMAZON AD SERVER Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline YIELDLAB (VIRTUAL MINDS GMBH) Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ROKU ADVERTISING SERVICES Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline SIMPLIFI HOLDINGS INC Cookie duration: 366 (days). Data collected and processed: Device identifiers, IP addresses, Precise location data more Uses other forms of storage. View details | Privacy policylaunch Consent PUBMATIC, INC Cookie duration: 90 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics 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, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline SHARETHROUGH, INC Cookie duration: 30 (days). Data collected and processed: Users’ profiles, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics 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: Device identifiers, IP addresses, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline SMAATO, INC. Cookie duration: 21 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics 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, Device identifiers, IP addresses, 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent CRITEO SA Cookie duration: 390 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline BLIS GLOBAL LIMITED Cookie duration: 400 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline LOTAME SOLUTIONS, INC Cookie duration: 274 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline GROUPM UK LIMITED Cookie duration: 395 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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: Non-precise location data, Device identifiers, IP addresses more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline LOOPME LIMITED Cookie duration: 90 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline DYNATA LLC Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent ASK LOCALA Doesn't use cookies. Data collected and processed: Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline NEAR INTELLIGENCE Doesn't use cookies. Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Precise location data, Device characteristics 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, Non-precise location data, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline BIDSWITCH GMBH Cookie duration: 365 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics more Cookie duration resets each session. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline TEADS FRANCE SAS Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics more Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline OS DATA SOLUTIONS GMBH & CO. KG Cookie duration: 90 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline PLATFORM161 B.V. Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline MEDIA.NET ADVERTISING FZ-LLC Cookie duration: 2190 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, IP addresses, Privacy choices more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline BASIS GLOBAL TECHNOLOGIES, INC. Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline BOMBORA INC. Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent YIELDMO, INC. Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline REMERGE GMBH Doesn't use cookies. Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, 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, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline DELTA PROJECTS AB Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics 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 ConsentLegitimate interesthelp_outline EMETRIQ GMBH Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch Consent PUBLICIS MEDIA GMBH Cookie duration: 90 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ONETAG LIMITED Cookie duration: 396 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline CLOUD TECHNOLOGIES S.A. Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics 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: Device identifiers, IP addresses, Privacy choices, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch Consent ADOBE ADVERTISING CLOUD Cookie duration: 365 (days). Data collected and processed: Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline BANNERFLOW AB Cookie duration: 366 (days). Data collected and processed: IP addresses more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline TABMO SAS Doesn't use cookies. Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline INTEGRAL AD SCIENCE (INCORPORATING ADMANTX) Doesn't use cookies. Data collected and processed: Browsing and interaction data, Non-precise location data, IP addresses, Privacy choices, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline WIZALY Cookie duration: 365 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline MOBILE PROFESSIONALS BV / SAGE&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, Non-precise location data, Device identifiers, IP addresses, User-provided data, 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, Non-precise location data, IP addresses, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline MOBFOX US LLC Cookie duration: 14 (days). Data collected and processed: Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Precise location data, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline EXACTAG GMBH Cookie duration: 180 (days). Data collected and processed: Browsing and interaction data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent CELTRA INC. Doesn't use cookies. Data collected and processed: Device identifiers, IP addresses, Precise location data, Device characteristics more Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline MAINADV SRL Cookie duration: 30 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline GEMIUS SA Cookie duration: 1825 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Device identifiers, Privacy choices, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, User-provided data, Precise location data, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline THE KANTAR GROUP LIMITED Cookie duration: 914 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics 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, Device identifiers, IP addresses, Privacy choices, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics 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, Non-precise location data, Device identifiers, IP addresses, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline ORACLE ADVERTISING Cookie duration: 180 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Uses other forms of storage. View details | Storage details | Privacy policylaunch Consent NUMBERLY Cookie duration: 180 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch Consent AUDIENCEPROJECT APS Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline 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 | Storage 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: Device identifiers, IP addresses more View details | Storage details | Privacy policylaunch Consent TRAVEL AUDIENCE GMBH Cookie duration: 397 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Precise location data, Authentication-derived identifiers, Device characteristics 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: Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline BLENDEE SRL Cookie duration: 366 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch Consent INNOVID LLC Cookie duration: 90 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Device characteristics 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 ConsentLegitimate interesthelp_outline NEUSTAR, INC., A TRANSUNION COMPANY Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline SALESFORCE.COM, INC. Cookie duration: 180 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch Consent VERVE GROUP EUROPE GMBH Doesn't use cookies. Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline OTTO (GMBH & CO KG) Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Device identifiers, IP addresses, Privacy choices, User-provided data 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: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline LOCALSENSOR B.V. Doesn't use cookies. Data collected and processed: Non-precise location data, Device identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch Consent ONLINE SOLUTION Cookie duration: 365 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Precise location data, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline RELAY42 NETHERLANDS B.V. Cookie duration: 730 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, User-provided data, Device characteristics more View details | Storage details | Privacy policylaunch Consent GP ONE GMBH Cookie duration: Uses session cookies. Data collected and processed: Browsing and interaction data, Non-precise location data, IP addresses, Privacy choices, User-provided data, Device characteristics more Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline LIFTOFF MOBILE, INC. Doesn't use cookies. Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline THE MEDIAGRID INC. Cookie duration: 365 (days). Data collected and processed: Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Precise location data, Device characteristics 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: Users’ profiles, Browsing and interaction data, Device identifiers, Probabilistic identifiers, IP addresses, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline CINT AB Cookie duration: 730 (days). Data collected and processed: Browsing and interaction data, Device identifiers, IP addresses, Privacy choices, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline GOOGLE ADVERTISING PRODUCTS Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch ConsentLegitimate interesthelp_outline GFK SE Cookie duration: 730 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, User-provided data, Authentication-derived identifiers, Device characteristics more Uses other forms of storage. View details | Privacy policylaunch Consent REVJET Cookie duration: 730 (days). Data collected and processed: Users’ profiles, Non-precise location data, Device identifiers, IP addresses, Privacy choices more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline PROTECTED MEDIA LTD Doesn't use cookies. Data collected and processed: Browsing and interaction data, Device identifiers, Probabilistic identifiers, IP addresses, Device characteristics more View details | Privacy policylaunch ConsentLegitimate interesthelp_outline CLINCH LABS LTD Cookie duration: 730 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, Probabilistic identifiers, IP addresses, Privacy choices, Device characteristics 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: Non-precise location data, IP addresses more View details | Privacy policylaunch ConsentLegitimate 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 ConsentLegitimate interesthelp_outline AMAZON ADVERTISING Cookie duration: 396 (days). Data collected and processed: Users’ profiles, Browsing and interaction data, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. Uses other forms of storage. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline MOLOCO, INC. Cookie duration: 730 (days). Data collected and processed: Non-precise location data, Device identifiers, IP addresses, 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, Non-precise location data, Device identifiers, IP addresses, Privacy choices, Authentication-derived identifiers, Device characteristics 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, Device identifiers, IP addresses, Privacy choices, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline EBAY INC Cookie duration: 90 (days). Data collected and processed: IP addresses, Privacy choices, Device characteristics more View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline HURRA COMMUNICATIONS GMBH Cookie duration: 366 (days). Data collected and processed: Non-precise location data, Device identifiers, IP addresses, Precise location data, Authentication-derived identifiers, Device characteristics more Cookie duration resets each session. View details | Storage details | Privacy policylaunch ConsentLegitimate interesthelp_outline 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 DMA INSTITUTE 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 VIDEOLOGY 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 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 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 ADLUDIO Privacy policylaunch Consent TAPJOY Privacy policylaunch Consent Accept all Confirm choices Close