1

我目前正在尝试从 Jive 5.0 数据库中导出个人资料图像。我有提取图像的 postgre 查询。但是我很难确定哪个图像是该配置文件当前选择的图像。

select *
from jiveuser u  
    LEFT JOIN jiveusercontainer c ON u.userid = c.userid  
    LEFT JOIN jivecontent ct ON ct.containerid = c.usercontainerid  
    left join jiveattachment ja on ja.objectid = ct.contentid
WHERE ct.contenttype = 501  and
    ja.objecttype = 501 and
    u.userid in (4794)  and
    filename = 'profile_image_500.png'
order by ja.modificationdate desc

有谁知道这些信息存储在 Jive 数据库的哪个位置?

4

1 回答 1

1

这是我相信会提取当前个人资料图像的查询:

select  ja.attachmentid, c.displayname, ja.creationdate, ja.filename , (select propvalue from jivecontentprop jcpi where jcpi.contentid = ct.contentid and propname = 'index' )
from jiveuser u  
    LEFT JOIN jiveusercontainer c ON u.userid = c.userid  
    LEFT JOIN jivecontent ct ON ct.containerid = c.usercontainerid  
    left join jiveattachment ja on ja.objectid = ct.contentid    
WHERE ct.contenttype = 501  and
    ja.objecttype = 501 and
    u.userid in (4794)  and
    filename = 'profile_image_500.png'
order by propvalue
limit 1
于 2014-02-17T20:41:42.687 回答