CREATE TABLE Sessions
(key_col INT NOT NULL IDENTITY PRIMARY KEY,
Hour_Min VARCHAR(10) NOT NULL,
usr VARCHAR(50) NOT NULL,
starttime DATETIME NOT NULL,
endtime DATETIME NOT NULL,
CHECK(endtime > starttime))

the Hour_Min is important, if you want max concurrent by hour then insert only the Hour part of the Session starttime...