ca_list_item_labels と ca_list_items の間の共通フィールド (item_id) に基づいて、テーブル ca_list_item_labels の「説明」フィールドを返そうとしています。ここで、ca_list_items の list_id = 41 です。
私が管理できる最も近いものは、サブクエリを使用することです...私はmySQLクエリを書くのはかなり初めてです。
次の2つのクエリを試しましたが、成功しませんでした:
SELECT description FROM ca_list_item_labels UNION SELECT * FROM ca_list_items WHERE 'list_id' = 41;
SELECT description FROM ca_list_item_labels WHERE (SELECT item_id FROM ca_list_items WHERE 'list_id' = 41);