下面的代碼選擇3級隨機的物品(照片)的價格,並將其傳遞到我的網站作爲一個字符串..從另一個SQL表中選擇的數據添加到字符串文本
SELECT TOP 3
thisweeksDate
,'<br/><a href="catalog/images/'
+ [filename] +
'" class="nyroModal" rel="gal" title="'
+ [price] +
'" ><img src="catalog/images/thumbnails/'
+ [filename] +
+ '" /></a>'
+ [price]
as strText
,fileID
FROM [OCBUser].[tblItems]
WHERE thisweeksDate = @thisweeksDate and price <> ''
ORDER BY NEWID()
上述作品完美,但我不知道夠不夠SQL尚未做到以下幾點..
我需要它也選擇
friendlyOrderID from [OCBUser].[tblOrders]
where [OCBUser].[tblItems].accountID = [OCBUser].[tblOrders].accountID
,並與超鏈接p添加到strText的refix所以它可以點擊。因此,這將需要inclide像...
<a href="www.mysite.com/' + [friendlyorderID] + '"
任何想法?
很多謝謝。
你試圖使用JOIN? – OHHO