SQL Query avatar
SQL Query

Pricing

Pay per usage

Go to Apify Store
SQL Query

SQL Query

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

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Useful tools

Useful tools

Maintained by Community

Actor stats

4

Bookmarked

10

Total users

1

Monthly active users

2 years ago

Last modified

Categories

Share

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.