Giter Club home page Giter Club logo

Comments (5)

TimonKK avatar TimonKK commented on August 15, 2024

Hi,
Can you share your code?

from clickhouse.

xcHades avatar xcHades commented on August 15, 2024

Something like that:

for (let i = 0; i < array.length; i++) {
        queries.push(`SELECT ${array[i].Id} AS Id,
        toInt64(coalesce(
        (
            SELECT count()
            FROM table1
            WHERE (Column1 = ${array[i].Field1}) AND (Column2 = ${array[i].Field2})
        ), 0) + coalesce(
        (
            SELECT count()
            FROM table2
            WHERE (Column1 = ${array[i].Field1}) AND (Column2 = ${array[i].Field2})
        ), 0))`);
    }
    ch.query(queries.join(' UNION ALL '), callback);

It's quite far from best practices, but it's the fastest and simplest way to extract required data. So I hope to solve that problem without changing DB structure.

from clickhouse.

TimonKK avatar TimonKK commented on August 15, 2024

You can try rewrite your sql like this:

SELECT
    countIf(
       (Column1 = 11) AND (Column2 = 12) 
    ) AS 1_id,
    countIf(
       (Column1 = 21) AND (Column2 = 22) 
    ) AS 2_id,
   ...
FROM (
    SELECT
        *
    FROM table1
    UNION ALL
    SELECT
        *
    FROM table2
)

from clickhouse.

xcHades avatar xcHades commented on August 15, 2024

It works great, thank you! I hope that this query will not break with a large number of countIf statements...

from clickhouse.

TimonKK avatar TimonKK commented on August 15, 2024

I use the query like this with 3 000 countIf and it works!

from clickhouse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.