Git Product home page Git Product logo

Comments (3)

Kamirus avatar Kamirus commented on July 22, 2024 1

I'm sorry I meant sth like this:

-- SELECT DISTINCT unnest(tag_list) FROM article ORDER BY 1
selectDistinctTagLists = distinct $ selectFrom article \a -> do
  let tagList = unnest a.tag_list
  orderBy asc tagList -- or `orderBy asc (lit 1)` should work
  pure { tagList }

singleton = generate_series 1 1

selectFrom singleton \_ ->
  pure
    { tags: toTextArray selectDistinctTagLists
    }

So that is should be
FROM generate_series(1,1) because we do selectFrom singleton
and the nested query should be between ARRAY ( and )::text[]
and no subquery alias should appear

AS tags appears because I named it so after the pure

from purescript-selda.

Kamirus avatar Kamirus commented on July 22, 2024

What about breaking it down into several operations:

SELECT ARRAY(SELECT DISTINCT unnest(tag_list) FROM article ORDER BY 1)::TEXT[] AS tags -- 0. original query
SELECT                                                                         AS tags -- 1. selectValues
       ARRAY(                                                        )::TEXT[]         -- 2. toTextArray
             SELECT DISTINCT unnest(tag_list) FROM article ORDER BY 1                  -- 3. use: distict, orderBy
  1. selectValues #46
    I'll provide this function after we merge scope-as-backend, for now, consider the workaround:
  • create a dummy table singleton that contains just one value (e.g. use generate_series 1 1)
  • selectValues r = selectFrom singleton \_ -> r
  1. toTextArray should take a query with just one column (of type String, right?) and wrap it with ARRAY( ... ):TEXT[] treating it as a DB expression Col s String
toTextArray
    s
  . ( z. FullQuery z { xCol z String })
   Col s String
toTextArray subQ = Col $ Any do
  q ← showQuery subQ
  pure $ "ARRAY(" <> q <>")::TEXT[]"
  1. SELECT DISTINCT unnest(tag_list) FROM article ORDER BY 1
    this query should be expressible in selda, distinct and orderBy are available, unnest(_) implement like a custom pg function from the guide

distinct
s r
. FullQuery s { | r }
FullQuery s { | r }

orderBy s a. Order Col s a Query s Unit


I have not tested it myself, but it would be sth that I'd try first.
I hope it helps! 😄

from purescript-selda.

jim108dev avatar jim108dev commented on July 22, 2024

I actually tried that before resulting in

SELECT
  ARRAY (sub_q0.tagList)::text[] AS tagList
FROM ( SELECT DISTINCT
    UNNEST(article_0.tag_list) AS tagList
  FROM
    article article_0
  ORDER BY
    1 ASC) sub_q0;

ERROR: syntax error at or near "sub_q0"
LINE 1: SELECT ARRAY (sub_q0.tagList)::TEXT[] AS tagList

from purescript-selda.

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.