select Distinct
p.ProductID,
p.SingleAppPrice,
p.ImageURL,
p.IconURL,
p.ProductName,
p.ActPrice,
c.CategoryIcon,
c.CategoryName,
s.SubCategoryName,
p.Rating,
p.AuthorID
from
ProductMast p,CategoryMast c,SubCategoryMast s
where
c.CategoryID=p.CategoryID
and s.SubCategoryID=p.SubCategoryID
and p.Keywords like '%application%'
or p.ProductName like '%application%'
or c.CategoryName like '%application%'
or s.SubCategoryName like '%application%'
得到明顯的記錄當我火這個查詢我得到121記錄,因爲多重使用像,如何防止這種重複。總戰績是11獲取與多個像
沒有任何類型的樣本數據的這個問題是沒有意義的。我們無法猜測你有什麼或你需要什麼。 – 2014-08-29 09:11:18
_「當我發火時,這個查詢得到了121條記錄,因爲多次使用like,如何防止這種重複。總記錄是11」_' WHERE'過濾記錄,所以它不會導致更多的記錄。但是'從ProductMast p,CategoryMast c,SubCategoryMast'創建一個carthesian產品。使用'加入'。 – 2014-08-29 09:12:51
@lc我試圖用不同的列搜索應用程序,但是當應用程序包含多個列時,重複是開始的 – 2014-08-29 09:13:00