SQL Query avatar
SQL Query

Pricing

Pay per usage

Go to Store
SQL Query

SQL Query

Developed by

Useful tools

Useful tools

Maintained by Community

Run SQL queries over Apify Platform (currently supports only Datasets).

0.0 (0)

Pricing

Pay per usage

4

Total users

5

Monthly users

2

Runs succeeded

>99%

Last modified

2 years ago

SQL Query Actor (PoC)

Actor for performing SQL queries over Apify platform.

Example for selecting aggregated information from dataset:

SELECT
country, city, COUNT(*) as amount
FROM
`jepxmCkXTBG5buxxx` -- id of Dataset
GROUP BY
country, city
SORT BY
country ASC, city ASC

Results are stored in to default Dataset of the run.

TODO:

  • load table optimizations - only used fields + parallel the loading.
  • Better Data-type determination (date, numbers, integers, etc...).
  • implement system tables - to be able to select Runs based on actors etc.
  • migrate to PostgreSQL - to be able to run PL/pgSQL scripts.