このクエリがありますが、正常に機能していません。
with c as (select
month(bookingdate) as duration,
count(*) as totalbookings
from
entbookings
group by month(bookingdate)
),
d as (SELECT
duration,
sum(totalitems)
FROM
[DrySoftBranch].[dbo].[mnthItemWiseTotalQty] ('1') AS BkdQty
group by duration
)
select
c.duration,
c.totalbookings,
d.bkdqty
from
c
inner join d
on c.duration = d.duration
これを実行すると、
メッセージ8155、レベル16、状態2、行1
「d」の列2に列が指定されていません。
誰かが私が間違っていることを教えてもらえますか?
また、これを実行すると、
with c as (select
month(bookingdate) as duration,
count(*) as totalbookings
from
entbookings
group by month(bookingdate)
),
d as (select
month(clothdeliverydate),
SUM(CONVERT(INT, deliveredqty))
FROM
barcodetable
where
month(clothdeliverydate) is not null
group by month(clothdeliverydate)
)
select
c.duration,
c.totalbookings,
d.bkdqty
from
c
inner join d
on c.duration = d.duration
私は得る
メッセージ8155、レベル16、状態2、行1'd
'の列1に列が指定されていません。
メッセージ8155、レベル16、状態2、行1
「d」の列2に列が指定されていません。