Subject | English | Russian |
d.b.. | full outer join | полное внешнее соединение (Alex_Odeychuk) |
comp., MS | full outer join | полное внешнее соединение (A type of outer join in which all rows in all joined tables are included, whether they are matched or not. For example, a full outer join between titles and publishers shows all titles and all publishers, even those that have no match) |
d.b.. | left outer join | левое внешнее соединение (Alex_Odeychuk) |
comp., MS | left outer join | левое внешнее соединение (A type of outer join in which all rows from the left-most table in the JOIN clause are included. When rows in the left table are not matched by rows in the right table, all result set columns that come from the right table are assigned a value of NULL) |
IT | outer join | внешнее соединение (операция в реляционных распределённых базах данных) |
el. | outer join | внешнее соединение отношений (в реляционной алгебре) |
progr. | outer join | внешнее объединение (1. Метод объединения, при котором не общий для всех объединяемых таблиц столбец становится частью таблицы-результата. 2. Объединение, результаты которого состоят из соответствующих строк объединяемых таблиц плюс несоответствующие строки одной или двух этих таблиц ssn) |
comp., MS | right outer join | правое внешнее соединение (An outer join in which all the records from the right side of the RIGHT JOIN operation in the query's SQL statement are added to the query's results, even if there are no matching values in the joined field from the table on the left) |
d.b.. | right outer join | правое внешнее соединение (Alex_Odeychuk) |
media. | right outer join | правостороннее внешнее объединение (объединение двух таблиц, при котором результирующая таблица содержит всю совокупность записей правой таблицы и только те записи из левой таблицы, которые совпадают с записями правой) |