検索結果- 英語 - 多言語
検索内容:
natural joins
plural of natural join
自然結合の複数形
join forces
(idiomatic) To combine labour, to come together, to unite.
力を合わせる / 協力する / 団結する
( present singular third-person )
( participle present )
( participle past )
( past )
join the dots
Synonym of connect the dots
点と点を結ぶ / (断片的な情報や事実を関連付け、全体像を明らかにする)
( present singular third-person )
( participle present )
( participle past )
( past )
inner joins
plural of inner join
「inner join」の複数形であり、内部結合(データベースにおいて複数のテーブルを条件に基づいて結合する操作)の意味を表します。
outer joins
plural of outer join
外部結合(複数形)。※この単語「outer joins」は、「outer join」の複数形であり、SQLにおける外部結合、つまりテーブルを結合する際に、該当しない行も含めて結合する操作を指します。
right outer joins
plural of right outer join
「right outer join」の複数形。すなわち、データベースにおける右外部結合を指す。
left outer joins
plural of left outer join
左外部結合(複数形)。SQLにおける結合の一種で、左側のテーブルの全てのデータと、結合条件に一致する右側テーブルのデータを取得する処理を指します。
full outer join
(databases) A join yielding a set of records for two tables, where all rows of the "left" table are enlisted with all rows of the "right" table, even if the join condition does not find any matching row on the "left" or on the "right" table.
データベースにおいて、2つのテーブルを結合する操作。左側のテーブルと右側のテーブルのすべての行を結果に含め、結合条件に合致しない行についてはNULLなどの補完値を用いる。
left outer join
(databases) A join yielding a set of records for two tables, where all rows of the "left" table are enlisted with all rows of the "right" table, even if the join condition does not find any matching row on the "right".
左外部結合:データベースにおける結合方法の一つで、左右のテーブルのうち、左側のテーブルのすべての行を結果に含め、右側のテーブルとの結合条件に合致しない場合は右側の値がNULLとなる結合方式です。