gpt4 book ai didi

mysql - 将各种商店营业时间存储在数据库中的方法

转载 作者:可可西里 更新时间:2023-11-01 06:31:34 27 4
gpt4 key购买 nike

我想在数据库中存储不同商店的营业时间。目前我正在使用最简单的解决方案:

CREATE TABLE opening_times(
shop_id int(3) NOT NULL,
times varchar(1000) NOT NULL
);

INSERT INTO opening_times VALUES(3,"Mon-Fri 8:30 to 18:00
Sat 9:00 to 12:00");

INSERT INTO opening_times VALUES(4,"24/7");

INSERT INTO opening_times VALUES(5,"Mon-Sun 8am-8pm");

我的下一个改进想法是;

CREATE TABLE opening_times(
shop_id int(3) NOT NULL,
monday varchar(11) NOT NULL,
tuesday varchar(11) NOT NULL,
wednesday varchar(11) NOT NULL,
thursday varchar(11) NOT NULL,
friday varchar(11) NOT NULL,
saturday varchar(11) NOT NULL,
sunday varchar(11) NOT NULL
);

INSERT INTO opening_times VALUES(
3,
"09:30-18:30",
"09:30-18:30",
"09:30-18:30",
"09:30-18:30",
"09:30-18:30",
"09:30-12:30",
"CLOSED"
);

但这仍然会导致一些问题:

  • 不可能有多次的日子。 (早上 8 点到 11 点,下午 1 点到 6 点)
  • 有很多未使用/冗余的字段,因为我的许多数据集每天都有固定时间或 24/7 开放
  • 它们不容易搜索到。
  • 节假日不能代表。

所以现在我想知道是否有一种灵活的方式来存储开放时间。可能使用类似 WD[1-5]{8-18},WD[6]{8-14},CD[12/25-12/26]{!0-24} 的语法其中 WD 表示工作日,CD 表示日历日或异常(exception)范围,! 表示关闭。 p>

是否有一种通用的方式来存储这样的信息?

最佳答案

标准化你的数据

存储为

shop_ID, Weekday, Start_hour, end_hour

weekday 可以有 1 到 7 之间的值,作为

的输出
SELECT DAYOFWEEK('2007-02-03')

可以按时间存储开始时间和结束时间http://dev.mysql.com/doc/refman/5.0/en/time.html

有了这个你就可以搞定一切了

要查找某个日期的营业时间,您会这样做

select start_hour, end_hour from table where weekday=dayofweek(curdate()) and shop_id=1

商店一天需要 2 个时间间隔?没问题,

`shop ID, weekday, start_hour, end_hour`
1; 1; 08:00:00 ; 09:00:00
1; 1; 10:00:00 ; 11:00:00

对于异常(exception)情况,您可以添加包含日期和商店的异常(exception)表。您可以查询它,如果它为空(无一异常(exception)),则返回营业时间。或者,您可以存储每个商店的每个日期,但这会使您的数据膨胀。

关于mysql - 将各种商店营业时间存储在数据库中的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19545597/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com