私は2つのテーブルを持っています:
create table dbo.Dates (
Id int not null
constraint Dates_Id_PK primary key clustered (Id),
[DateValue] date not null
}
create table dbo.Posts (
Id int identity not null
constraint Posts_Id_PK primary key clustered (Id),
Created datetime not null,
Title nvarchar (200) not null
)
これらのテーブルには、Date エンティティと Post エンティティがあります。
Dates の列 DateValue とその日付の投稿数を含むテーブルを取得するにはどうすればよいですか。
日時の Created 値を日付の DateValue と一致させる必要があります。
ありがとうございました、
ミゲル