8 lines
272 B
SQL
8 lines
272 B
SQL
SELECT format(RequirementDate, 'yyyy-MM-dd') as requirementDate
|
|
,ArticleHumanReadableId
|
|
,CustomerArticleNumber
|
|
,ArticleDescription
|
|
,Quantity
|
|
FROM [test1_AlplaPROD2.0_Read].[forecast].[Forecast]
|
|
where DeliveryAddressHumanReadableId in ([customers])
|
|
order by RequirementDate |