'회의'테이블을 만들고 EndDate를 StartDate + ConferenceDays로 설정하려고합니다. 어떤 방법으로 그렇게 할 수 있습니까? SQL 서버의 경우SQL Server - 계산 날짜 열
create table Conferences(
ConferenceID int not null primary key,
ConferenceName varchar(50) not null,
ConferenceDays int not null,
StartDate date not null,
EndDate date not null,
)
세 개의 합계 인 새로운 열을 원하십니까? –
어떤 DBMS를 사용하고 있습니까? 포스트그레스? 신탁? DB2? 파이어 버드? –
@YashveerSingh StartDate가 2016-01-01이고 ConferenceDays가 4이면 EndDate가 2016-01-05가되기를 원합니다. –