有个关于网吧计费的记录表,在SQL中怎样使关机时间EndTime不能早于开机时间BeginTime?
(在企业管理器或用代码解决都可以)
建立约束
例如 create table 表名
( begin_time date(),
Endtime date() check Endtime >begin_time
)