简体   繁体   English

谁可以给我解释一下这个

[英]can someone explain this to me

Times

Refers to the start + stop date 指开始+结束日期

For each user assigned to a timeslice, create a reference record here of UserId + Time. 对于分配给时间片的每个用户,在此处创建用户ID +时间的参考记录 What does the bolded mean? 粗体是什么意思? I know this is a noob question, sorry. 我知道这是一个菜鸟问题,对不起。

Assuming you are talking about how to create a db schema for this: 假设您正在谈论如何为此创建数据库模式:

ScheduleTimes 
===============
ScheduleTimesID  <-- PK
StartDate
StopDate

ScheduleUsers
===============
ScheduleUsersID  <-- PK
UserID           <-- FK to Users table
ScheduleTimesID  <-- FK to ScheduleTimes table

Users
=======
UserID           <-- PK
Username
...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM