Skip to content

SQL: Multi-table SELECT #275

@ghost

Description

Multi-table SELECT is query like

SELECT * FROM foo, bar;

Example

If foo table is:

a b
1 2
2 1

and bar is

c d
3 4
4 3

Query result:

a b c d
1 2 3 4
1 2 4 3
2 1 3 4
2 1 4 3

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions