- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我必须要加入 SQLite 中的表。一张表有练习的 ID 和标题。另一张表有该练习的图像。每个练习可以有很多图像。
我曾尝试使用 JOIN 编写 SQL,但每次练习它给我 2 行(因为每个练习至少有 100 张图像)。但是我希望它在一行中,因为我将在 Android Java 适配器中使用结果。
我将在下面发布我的表和我拥有的 SQL。我还将发布 Java 方法,以防使用 JOIN 以外的其他方法解决此问题。
运动指数:
╔════════════╦═══════════════╗
║ exercise_id║ exercise_title║
╠════════════╬═══════════════╣
║ 1 ║ Bench press ║
║ 2 ║ Sit ups ║
║ 3 ║ Push ups ║
╚════════════╩═══════════════╩
exercise_index_images:
╔═══════════════════╦═══════════════════════════╦════════════════════╗
║ exercise_image_id ║ exercise_image_exercise_id║ exercise_image_file║
╠═══════════════════╬═══════════════════════════╬════════════════════╣
║ 1 ║ 1 ║ bench_press_1.png ║
║ 2 ║ 1 ║ bench_press_2.png ║
║ 3 ║ 2 ║ sit_ups_1.png ║
║ 4 ║ 2 ║ sit_ups_2.png ║
║ 5 ║ 3 ║ push_ups_1.png ║
║ 6 ║ 3 ║ push_ups_2.png ║
╚═══════════════════╩═══════════════════════════╩════════════════════╩
我现在的查询:
String query = "SELECT exercise_index.exercise_id, exercise_index.exercise_title, " +
"exercise_index_images.exercise_image_id, exercise_index_images.exercise_image_file " +
"FROM exercise_index " +
"JOIN exercise_index_images ON exercise_index.exercise_id=exercise_index_images.exercise_image_exercise_id";
这给了我:
╔════════════╦═══════════════╗╔═══════════════════╦═══════════════════════════╦════════════════════╗
║ exercise_id║ exercise_title║║ exercise_image_id ║ exercise_image_exercise_id║ exercise_image_file║
╠════════════╬═══════════════╣╠═══════════════════╬═══════════════════════════╬════════════════════╣
║ 1 ║ Bench press ║║ 1 ║ 1 ║ bench_press_1.png ║
║ 1 ║ Bench press ║║ 2 ║ 1 ║ bench_press_2.png ║
║ 2 ║ Sit ups ║║ 3 ║ 2 ║ sit_ups_1.png ║
║ 2 ║ Sit ups ║║ 4 ║ 2 ║ sit_ups_2.png ║
║ 3 ║ Push ups ║║ 5 ║ 3 ║ push_ups_1.png ║
║ 3 ║ Push ups ║║ 6 ║ 3 ║ push_ups_2.png ║
╚════════════╩═══════════════╩╚═══════════════════╩═══════════════════════════╩════════════════════╩
我想要的是这个:
╔════════════╦═══════════════╗╔═════════════════════╦═════════════════════════════╦══════════════════════╗╔═════════════════════╦═════════════════════════════╦══════════════════════╗
║ exercise_id║ exercise_title║║ exercise_image_id_1 ║ exercise_image_exercise_id_1║ exercise_image_file_1║║ exercise_image_id_2 ║ exercise_image_exercise_id_2║ exercise_image_file_2║
╠════════════╬═══════════════╣╠═════════════════════╬═════════════════════════════╬══════════════════════╣╠═════════════════════╬═════════════════════════════╬══════════════════════╣
║ 1 ║ Bench press ║║ 1 ║ 1 ║ bench_press_1.png ║║ 2 ║ 1 ║ bench_press_2.png ║
║ 2 ║ Sit ups ║║ 3 ║ 2 ║ sit_ups_1.png ║║ 4 ║ 2 ║ sit_ups_2.png ║
║ 3 ║ Push ups ║║ 5 ║ 3 ║ push_ups_1.png ║║ 6 ║ 3 ║ push_ups_2.png ║
╚════════════╩═══════════════╩╚═════════════════════╩═════════════════════════════╩══════════════════════╩╚═════════════════════╩═════════════════════════════╩══════════════════════╩
Android/Java 方法:
public void populateExercises(){
/* Database */
DBAdapter db = new DBAdapter(this);
db.open();
// Get all food for that category
String currentLanguageSQL = db.quoteSmart(currentLanguage);
String query = "SELECT exercise_index._id, exercise_index.exercise_id, exercise_index.exercise_title, exercise_index.exercise_type_id " +
"FROM exercise_index " +
"WHERE exercise_language=" + currentLanguageSQL + " AND exercise_muscle_group_id_main=" + currentMuscleGroupMainId;
query = query + " ORDER BY exercise_title ASC";
listCursor = db.rawQuery(query);
// Find ListView to populate
ListView lvItems = findViewById(R.id.listViewExercises);
// Setup cursor adapter using cursor from last step
ExercisesCMuscleGroupsOpenMainCursorAdapter exercisesAdapter = new ExercisesCMuscleGroupsOpenMainCursorAdapter(this, listCursor);
// Attach cursor adapter to the ListView
try {
lvItems.setAdapter(exercisesAdapter); // uses ContinensCursorAdapter
} catch (Exception e) {
Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
}
// Close db
db.close();
// OnClick
lvItems.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
exerciseListItemClicked(arg2);
}
});
} // populateExercises
最佳答案
如果您只有两个图像,那么您可以进行条件聚合:
select exercise_id, exercise_title,
max(case when seq = 1 then exercise_image_id end) as exercise_image_id_1,
max(case when seq = 1 then exercise_image_file end) as exercise_image_file_1,
max(case when seq = 2 then exercise_image_id end) as exercise_image_id_2,
max(case when seq = 2 then exercise_image_file end) as exercise_image_file_2
from (select *, row_number() over (partition by ei.exercise_id order by eimg.exercise_image_id) seq
from exercise_index ei inner join
exercise_index_images eimg
on eimg.exercise_image_exercise_id = ei.exercise_id
) t
group by exercise_id, exercise_title;
关于android - 加入多对一,但显示为一个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50986357/
我想对 JOIN 进行特定的排序 SELECT * FROM (lives_in as t1 NATURAL JOIN preferences p1) l1 JOIN (lives_in t2 NAT
我正在努力解决一个查询。并想知道是否有人可以提供帮助。 我有一个标签表(服务请求票)和序列号表 从我的标签中我正在这样做 Select * from tag where tag.created BET
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 7 年前。 Improve this ques
我有两个表 tbl_user 和 tbl_lastchangepassword,如下所示 表 tbl_user id| name --------- 1 | user1 2 | user2 3 |
我有下一个问题 SELECT i.*, gu.* vs.* FROM common.global_users gu LEFT JOIN common.global_users_perms gup ON
我有一个电影表和一个投票表。用户为他们喜欢的电影投票。我需要显示按电影总票数降序排列的电影列表。我现在所拥有的有点作品。唯一的问题是它不显示 0 票的电影。 SELECT m.name, m.imdb
我有一个由这样的表组成的 mySql 数据库: 我如何(如果可能的话)使用 JOINS 从名称/周期表中获取结果?简单来说,它是如何工作的?我向菜鸟问题道歉。我对此很陌生。任何帮助将不胜感激。 最佳答
我需要查询单元先决条件的自引用关系。 我知道您需要使用两个联接,我是否选择我的列然后将其联接到自身? SELECT u.unit_code, u.name + ' is a prerequisi
我有两个实体,用户和友谊,它们看起来像: public class User { public int UserId { get; set; } (..
假设我有两个表: Table A ProdID | PartNumber | Data... 1 | ABC-a | "Data A" 2 | (null) |
说我有这个数据, (df <- data.frame( col1 = c('My','Your','His','Thir'), col2 = c('Cat','Dog','Fish','Dog')))
我有两个这样的数组,实际上这是从两个不同的服务器检索的 mysql 数据: $array1 = array ( 0 => array ( 'id' => 1, 'n
我的数据库中有以下表格 CREATE TABLE [author_details] ( [_id] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, [name
我正在努力使用一个相当简单的 sql select 语句的 join/where 子句。 我正在尝试从 tb1 中检索产品信息列表,其中 where 条件位于 tbl2 中,但这必须由三个不同的列连接
我正在寻找以下功能: Applicative f => f (f a) -> f a Hoogle给我看join : >:t join join :: Monad m => m (m a) -> m
我有两个“表”,分别是 USER 和 CONGE。在表“CONGE”中,我插入了用户的 ID。但是我不知道如何根据用户的id显示用户的休假。 我想根据id发布“Congé”。 { "conge"
我们有一个具有(简化)结构的文档,如Elasticsearch所示: { _id: ..., patientId: 4711, text: "blue" } { _id: ..., patientId
这两个sql语句有什么区别 a) 从 T1,T2 中选择 *,其中 T1.A=T2.A ; b) 从 T1,T2 中选择 *,其中 T2.A=T1.A ; 在这两种情况下我得到相同的输出,这两种语句之
我想做一个简单的连接,只是比较两个表中的 ID.. 我有我的组表,包含; 身份证 姓名 等.. 我的 GroupMap 表包含; 身份证 组号 元素编号 我的查询采用 GroupMap.ItemID
所以我有一组主要数据,如下所示: value_num code value_letter 1 CDX A 2 DEF B
我是一名优秀的程序员,十分优秀!