Giter Site home page Giter Site logo

Comments (2)

griffio avatar griffio commented on July 20, 2024

It should work with a CTE , but there is an issue with BOOLEAN literals - I have fixed as part of #5253

e.g

WITH x(some_boolean, tbl2_name) AS (
    VALUES
    (TRUE, 'name1'),
    (FALSE, 'name2')
)
INSERT INTO table1(some_boolean, tbl2_id)
SELECT some_boolean, tbl2.id
FROM x JOIN table2 AS tbl2 ON name = x.tbl2_name;

Subqueries with a column list such as https://www.postgresql.org/docs/current/queries-table-expressions.html#QUERIES-SUBQUERIES , isn't currently implemented as the original core grammar is for Sqlite.
e.g

FROM (VALUES ('anne', 'smith'), ('bob', 'jones'), ('joe', 'blow'))
     AS names(first, last)

from sqldelight.

OfekTeken avatar OfekTeken commented on July 20, 2024

@griffio Thanks for your response :)
Good to know that this could work with a CTE, but what if the number of insertion values aren't pre-defined? Meaning, it could be n number of entries at runtime (This could be referenced to #5254).

Regarding the core of the issue, I think that if it's possible from within a CTE that it's probably not that big of a deal, but still - It might be beneficial to support it to allow a wider range of queries supported by SQLDelight. (As per your example with SQLite)

from sqldelight.

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.