Abdalla Ben Omran Ответов: 1

Как объединить два столбца в один столбец без null ?


я хочу поместить столбец (ToLocationLagerScandCode)вместе с столбцом (ToLocationHandlingUnitsScandCode) в один столбец без нуля .

Что я уже пробовал:

select Top (100) itemH.ProduktID,p.P_NavArtNr as ProduktNavArtNr,p.P_Name as PName,

 lager.Scancode as ToLocationLagerScandCode,handling.Scancode as ToLocationHandlingUnitsScandCode, 

lager2.Scancode as FromLocactionLagerScandCode ,handling2.Scancode as FromLocactionHandlingUnitsScandCode, itemH.Date

from ItemHistory itemH

join Produkte p on itemH.ProduktID = p.P_ID
left Join Lagerort lager on itemH.ToLocation = lager.LagerID

left join HandlingUnits handling on itemH.ToLocation = handling.Unit_ID

left join Lagerort lager2 on itemH.FromLocation = lager2.LagerID 

left join HandlingUnits handling2 on itemH.FromLocation = handling2.Unit_ID

order by itemH.Date desc

Maciej Los

Ваш вопрос не совсем ясен. Можете ли вы предоставить данные smaple?
Воспользуйся Улучшить вопрос виджет.

[no name]

я сделал

Maciej Los

Нет, ты не знал. Я не вижу примеров.

1 Ответов

Рейтинг:
2

Aung Than Lwin

select coalesce(ToLocationLagerScandCode,handling.Scancode) As ToLocationHandlingUnitsScandCode from ItemHistory itemH where coalesce(ToLocationLagerScandCode,handling.Scancode) IS NOT NULL