gpt4 book ai didi

mysql - SQL 联盟 : Selecting id of file_up table

转载 作者:行者123 更新时间:2023-11-29 19:48:31 24 4
gpt4 key购买 nike

我有两个表treeview_itemsfile_up

treeview_items

img1

file_up

img2

还有一个查询(不是我写的)

SELECT *
FROM treeview_items
UNION
SELECT id + (select max(id) from treeview_items), name,
path as text,dir_id as parent_id
FROM file_up

现在如何修改此查询,以便 file_up 表中的 id 也将列在查询结果中?我尝试了一些方法,但仍然卡住了!

当前输出和预期输出,这里列名id from file_up仅供演示。

img3

最佳答案

不确定我是否完全明白你在说什么,但你在寻找这样的东西吗?

SELECT *, WhateverID = NULL
FROM treeview_items
UNION
SELECT id + (select max(id) from treeview_items), name,
path as text,dir_id as parent_id, WhateverID
FROM file_up

关于mysql - SQL 联盟 : Selecting id of file_up table,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40886805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com