inner
English [??n?(r)] US [??n?]
adj Interne, spirituel; secret
n. Interne, à l'intérieur; rejoindre
Anglais [d???n] US [d???n]vt.& vi Participer; connecter
vt Participer à; )n. connexion; combinaison; joint; point communTroisième personne du singulier : rejoint Participe présent : rejoindre Passé : rejoint Participe passé : rejoint
Mot-clé mysql INNER JOIN syntaxe
Fonction?: Le mot-clé INNER JOIN renvoie les lignes lorsqu'il y a au moins une correspondance dans le tableau.
Syntaxe?: SELECT nom_colonne(s) FROM nom_table1 INNER JOIN nom_table2 ON nom_table1.column_name=nom_table2.nom_colonne
Remarque?: INNER JOIN est identique à JOIN.
Mot-clé mysql INNER JOIN exemple
//列出所有人的定購 SELECT Persons.LastName, Persons.FirstName, Orders.OrderNo FROM Persons INNER JOIN Orders ON Persons.Id_P=Orders.Id_P ORDER BY Persons.LastName;