- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下表格:
Rooms
+------+-------+
| ID | Room |
+------+-------+
| 1 | A101 |
| 2 | A102 |
| 3 | A103 |
| 4 | A101o |
| 5 | A102o |
| 6 | A103o |
+------+-------+
Beds
+------+---------+
| ID | RoomId |
+------+---------+
| 1 | 1 |
| 2 | 1 |
| 3 | 2 |
| 4 | 2 |
| 5 | 3 |
| 6 | 3 |
| 7 | 4 |
| 8 | 4 |
| 9 | 5 |
| 10 | 5 |
| 11 | 6 |
| 12 | 6 |
+------+---------+
每个房间都有一定数量的床(通常是 2 张)。我想对带有任意 1-1 对床的房间进行自我连接(即低于 1-7 和 2-8 是成对的,但 1-8 和 2-7 也一样好。但我不想要所有可能的配对,即我不想要 1-7, 1-8, 2-7, 2-8 .... 我只希望每张床都与相应房间中的另一张床完全配对.
+--------+--------+--------+---------+
| Room 1 | Bed 1 | Room 2 | Bed 2 |
+--------+--------+--------+---------+
| A101 | 1 | A101o | 7 |
| A101 | 2 | A101o | 8 |
| A102 | 3 | A102o | 9 |
| A102 | 4 | A102o | 10 |
| A103 | 5 | A103o | 11 |
| A103 | 6 | A103o | 12 |
+--------+--------+--------+---------+
请注意,我的实际数据的排序并不是那么整齐——但我知道相应房间的床位数量是相等的。如果A102有3张床,A102o也会有3张床,以此类推。
SELECT beds.bed_id, rooms.room, rooms2.room as room2, beds2.bed_id AS bed_id2
FROM beds
LEFT JOIN rooms ON (beds.room_id = rooms.room_id)
CROSS JOIN rooms rooms2 ON (CONCAT(rooms.room,'o') = rooms2.room)
JOIN beds beds2 ON (beds2.room_id = rooms2.room_id);
最佳答案
如果您只希望每对相关房间有两行:
select r1.room 'Room 1',if(which_row=1,min(b1.bed_id),max(b1.bed_id)) 'Bed 1',r2.room 'Room 2',if(which_row=1,min(b2.bed_id),max(b2.bed_id)) 'Bed 2'
from (select 1 which_row union all select 2) which_row
cross join rooms r1
join rooms r2 on r2.room=concat(r1.room,'o')
join beds b1 on b1.room_id=r1.room_id
join beds b2 on b2.room_id=r2.room_id
group by r1.room_id,r2.room_id,which_row
如果您想要的行数与床位一样多(最多四张),它基本上是相同的,但是获取每行床位的表达式稍微复杂一些,您需要一个子查询来获取床位的数量每对房间:
select
room1 'Room 1',
substring_index(substring_index(beds1, ',', which_row), ',', -1) 'Bed 1',
room2 'Room 2',
substring_index(substring_index(beds2, ',', which_row), ',', -1) 'Bed 2'
from (
select
r1.room room1,
group_concat(distinct b1.bed_id order by b1.bed_id) beds1,
r2.room room2,
group_concat(distinct b2.bed_id order by b2.bed_id) beds2,
least(count(distinct b1.bed_id),count(distinct b2.bed_id)) beds
from rooms r1
join rooms r2 on r2.room=concat(r1.room,'o')
join beds b1 on b1.room_id=r1.room_id
join beds b2 on b2.room_id=r2.room_id
group by r1.room, r2.room
) room_pairs
join (
select 1 which_row union all select 2 union all select 3 union all select 4
) which_row on which_row <= room_pairs.beds
将其分块构建,您希望每对房间在结果中最多有四行。因此,您可以使用一个子查询,该子查询可以连接到查询的其余部分,从而导致所有其他行重复:
select 1 which_row union all select 2 union all select 3 union all select 4
+-----------+
| which_row |
+-----------+
| 1 |
| 2 |
| 3 |
| 4 |
+-----------+
还有一个子查询,可以获取每个房间对的所有床位:
select
r1.room room1,
group_concat(distinct b1.bed_id order by b1.bed_id) beds1,
r2.room room2,
group_concat(distinct b2.bed_id order by b2.bed_id) beds2,
least(count(distinct b1.bed_id),count(distinct b2.bed_id)) beds
from rooms r1
join rooms r2 on r2.room=concat(r1.room,'o')
join beds b1 on b1.room_id=r1.room_id
join beds b2 on b2.room_id=r2.room_id
group by r1.room, r2.room
+-------+----------+-------+----------+------+
| room1 | beds1 | room2 | beds2 | beds |
+-------+----------+-------+----------+------+
| A101 | 1,2 | A101o | 7,8 | 2 |
| A102 | 3,4 | A102o | 9,10 | 2 |
| A103 | 5,6 | A103o | 11,12 | 2 |
| A205 | 13,14,15 | A205o | 16,17,18 | 3 |
+-------+----------+-------+----------+------+
将两者连接在一起,将 which_row 限制为每个房间对的床数:
select which_row, room1, beds1, room2, beds2
from (
select
r1.room room1,
group_concat(distinct b1.bed_id order by b1.bed_id) beds1,
r2.room room2,
group_concat(distinct b2.bed_id order by b2.bed_id) beds2,
least(count(distinct b1.bed_id),count(distinct b2.bed_id)) beds
from rooms r1
join rooms r2 on r2.room=concat(r1.room,'o')
join beds b1 on b1.room_id=r1.room_id
join beds b2 on b2.room_id=r2.room_id
group by r1.room, r2.room
) room_pairs
join (
select 1 which_row union all select 2 union all select 3 union all select 4
) which_row on which_row <= room_pairs.beds
+-----------+-------+----------+-------+----------+
| which_row | room1 | beds1 | room2 | beds2 |
+-----------+-------+----------+-------+----------+
| 1 | A101 | 1,2 | A101o | 7,8 |
| 2 | A101 | 1,2 | A101o | 7,8 |
| 1 | A102 | 3,4 | A102o | 9,10 |
| 2 | A102 | 3,4 | A102o | 9,10 |
| 1 | A103 | 5,6 | A103o | 11,12 |
| 2 | A103 | 5,6 | A103o | 11,12 |
| 1 | A205 | 13,14,15 | A205o | 16,17,18 |
| 2 | A205 | 13,14,15 | A205o | 16,17,18 |
| 3 | A205 | 13,14,15 | A205o | 16,17,18 |
+-----------+-------+----------+-------+----------+
然后只需更改所选字段即可从逗号分隔列表中为每一行获取正确的床位:
select
room1,
substring_index(substring_index(beds1, ',', which_row), ',', -1) bed1,
room2,
substring_index(substring_index(beds2, ',', which_row), ',', -1) bed2
+-------+------+-------+------+
| room1 | bed1 | room2 | bed2 |
+-------+------+-------+------+
| A101 | 1 | A101o | 7 |
| A101 | 2 | A101o | 8 |
| A102 | 3 | A102o | 9 |
| A102 | 4 | A102o | 10 |
| A103 | 5 | A103o | 11 |
| A103 | 6 | A103o | 12 |
| A205 | 13 | A205o | 16 |
| A205 | 14 | A205o | 17 |
| A205 | 15 | A205o | 18 |
+-------+------+-------+------+
关于mysql - 在间接相关表中的项目之间创建任意的 1-1 对应关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63716091/
我想检查我的应用程序或系统中是否存在库。在 Java 中,我通常执行 System.loadlibrary,但是有谁知道 C 中类似的相应调用吗? 最佳答案 是dlopen打开一个库,dlsym 从加
我在 typescript 中输入以下内容 export type Excludable = T & { isExcluded?: boolean } 其中过滤值: export type Filte
我最近在我的应用程序中添加了一种方法,可以自动格式化 TextView ,从“50000”到“50,000”,效果绝对完美。现在我遇到的问题是,在我的应用程序中,有多个按钮功能可以从该 TextVie
SELECT * FROM conversations WHERE chatMembers LIKE '%1%'AND chatMembers LIKE '%10%' 对话表 id | chatMem
我正在编写一个需要将 Java Date() 值保存到 MySQL 数据库的 RESTful Web 服务,但是,我不确定 MySQL 中可以保存 Java Date() 的数据类型是什么,或者我是否
同样,在任何 Red Hat 或 JBoss 站点上都没有关于此的信息,所以我在这里问... 我不确定是 13 还是 14。 最佳答案 Mapping the Community versions w
同样,在任何 Red Hat 或 JBoss 站点上都没有关于此的信息,所以我在这里问... 我不确定是 13 还是 14。 最佳答案 Mapping the Community versions w
我曾尝试使用 swift 开发一款利用 iPhone 的 3D 触摸硬件的游戏。然而,当我将我的应用程序提交到 App Store 时,它被拒绝了,因为该游戏无法在 iPad 上玩。 我的问题是,
Qt 的有序关联容器对应项 std::map是QMap , std::set是QSet , 对于无序关联容器 std::unordered_map是QHash . 我应该用什么来代替std::unor
JavaScript 方法 String.fromCharCode() 在以下意义上与 Python 的 unichar() 等效: print unichr(213) # prints Õ on t
正如谷歌在 "Discontinuing support for JSON-RPC and Global HTTP Batch Endpoints" 中提到的那样,Google API 客户端库已重新
我正在使用 MapLayer 和 MapOverlay 在 map 中创建自己的路径/折线,GPS 捕获的所有点都存储在一个结构中,以便我可以访问它们。随时。 现在,我希望路径在用户操作 map (缩
我们使用 Adobe Flash Builder 创建由 Flex 提供支持的交互式 Web 应用程序。现在我们正在寻找替代方案,让我们在 UI 设计和迎合 HTML5 的编码方面拥有同样的开发便
我想知道Android/Java 中类似C#/C++ 中的GetTickCount 方法的相应方法吗? 最佳答案 Android 为 SystemClock.uptimeMillis() .请注意,u
我用 Vue + Phaser 开始了新项目,但是当我尝试加载 Assets 时,this.game.load.image 中的“load”和“add”返回“undefined”。我尝试从 JS 文件
我是一名优秀的程序员,十分优秀!