我创建了2个表, 1个预订(时间戳,姓名,电话,日期,时间,表格) 2个表(tableId,TableNo)
用户可以在表单中的列表中添加和选择条目 但是当他们到达表格列表时,我想运行一个查询,它将检查已保存的预订(table1 time& tableNO)并且它们的时间大于给定变量,因此table2将必须在表格编号旁边显示名称和时间保存的预订, 希望这有一定道理:
reservations tables
name date time tableNO 1
John 20/5 12:30 5 2
Mary 20/5 15:00 2 3
4
5
我想要达到的目标是:
SELECT FROM tables .... WHERE time> 13:00
reservations tables
name date time tableNO 1
John 20/5 12:30 5 2 Mary
Mary 20/5 15:00 2 3
4
5