mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
28 lines
679 B
SQL
28 lines
679 B
SQL
SELECT
|
|
problem."id" AS "source_id",
|
|
problem.document_id AS document_id,
|
|
problem.paragraph_id AS paragraph_id,
|
|
problem.dataset_id AS dataset_id,
|
|
0 AS source_type,
|
|
problem."content" AS "text",
|
|
paragraph.is_active AS is_active
|
|
FROM
|
|
problem problem
|
|
LEFT JOIN paragraph paragraph ON paragraph."id" = problem.paragraph_id
|
|
${problem}
|
|
|
|
UNION
|
|
SELECT
|
|
paragraph."id" AS "source_id",
|
|
paragraph.document_id AS document_id,
|
|
paragraph."id" AS paragraph_id,
|
|
paragraph.dataset_id AS dataset_id,
|
|
1 AS source_type,
|
|
concat_ws('
|
|
',concat_ws('
|
|
',paragraph.title,paragraph."content"),paragraph.title) AS "text",
|
|
paragraph.is_active AS is_active
|
|
FROM
|
|
paragraph paragraph
|
|
|
|
${paragraph} |