Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含会话名称及其时间的 sql 数据库我在 j-list 中检索了会话名称并在 j-text 字段中检索了它们的时间
如果您不能同时预订两个会议,我希望有人帮助我解决逻辑
将会话时间和名称定义为在您的表中是唯一的,然后 MySQL 将注意不要同时创建两条记录。
像那样:
CREATE UNIQUE INDEX session_index ON your_table (session_time, session_name);
在您的代码中,您需要处理 MySQL 抛出的异常,以防出现重复条目。