|
Date: 2/19/2008 3:36 pm · Subject: listing all pdfs · Rating: -4
I have a query that I think should list all the pdfs: select asset.assetId, asset.parentId, assetData.url,assetData.title,assetData.menuTitle,assetData.assetSize, assetData.revisionDate from asset inner join FileAsset on asset.assetId = FileAsset.assetId inner join assetData on asset.assetId = assetData.assetId where FileAsset.filename like '%.pdf' and asset.state = 'published' and assetData.groupIdView = 7 1) how do I modify this to list all pdfs from a specific starting point? 2) how do I translate the assetSize to Kb? Is it in bytes right now? Thanks!
--- (Edited on 2/19/2008 3:36 pm [GMT-0600] by elnino) ---
|