Heim >Datenbank >MySQL-Tutorial >Wie führe ich einen Inner Join für Javascript-Arrays durch?

Wie führe ich einen Inner Join für Javascript-Arrays durch?

Linda Hamilton
Linda HamiltonOriginal
2025-01-06 00:45:40926Durchsuche

How to Perform an Inner Join on Javascript Arrays?

Inner Join von Javascript-Arrays zur Datenmanipulation

Problemstellung:

Kombinieren von zwei Javascript-Arrays zu einem einzigen Ergebnisarray basierend auf einem gemeinsamen Schlüssel, ähnlich der JOIN-Operation in SQL.

Gegeben Arrays:

  • 'userProfiles': Enthält Objekte mit den Eigenschaften 'id' und 'name'.
  • 'questions': Enthält Objekte mit den Eigenschaften 'id', 'text' und ' „createdBy“-Eigenschaften.

Lösung:

Inner Join Implementierung:

const innerJoin = (xs, ys, sel) =>
    xs.reduce((zs, x) =>
        ys.reduce((zs, y) =>        // cartesian product - all combinations
            zs.concat(sel(x, y) || []), // filter out the rows and columns you want
        zs), []);

Beispieldatensatz:

const userProfiles = [
    {id: 1, name: "Ashok"},
    {id: 2, name: "Amit"},
    {id: 3, name: "Rajeev"},
];

const questions = [
    {id: 1, text: "text1", createdBy: 2},
    {id: 2, text: "text2", createdBy: 2},
    {id: 3, text: "text3", createdBy: 1},
    {id: 4, text: "text4", createdBy: 2},
    {id: 5, text: "text5", createdBy: 3},
    {id: 6, text: "text6", createdBy: 3},
];

Join-Operation:

const result = innerJoin(userProfiles, questions,
    ({id: uid, name}, {id, text, createdBy}) =>
        createdBy === uid && {id, text, name});

Konsolenausgabe:

Open your browser console to see the output.

[
  { id: 1, text: 'text3', name: 'Ashok' },
  { id: 2, text: 'text1', name: 'Amit' },
  { id: 2, text: 'text2', name: 'Amit' },
  { id: 4, text: 'text4', name: 'Amit' },
  { id: 5, text: 'text5', name: 'Rajeev' },
  { id: 6, text: 'text6', name: 'Rajeev' }
]

Das obige ist der detaillierte Inhalt vonWie führe ich einen Inner Join für Javascript-Arrays durch?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn