我想比較where子句中兩列是否相等。柱子是兩列是從已加入比較Where子句中兩列是否相等
這不同的表是我使用
SELECT authors.state, sum(qty*price)as sales_revenue
from authors,titles, stores, sales
WHERE authors.state = (SELECT stores.state from stores)
的發言,但我得到的是說這 中號
sg 8120, Level 16, State 1, Line 1
Column 'authors.state' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause.
只是要注意的:有標題的笛卡爾積+銷售+(作者+標題)。所以你的查詢返回的數據是沒有意義的。 – zerkms 2011-03-29 03:49:30
你現在可以發佈你的查詢嗎?另外,是否在多個表格中定義了數量和價格? – JPM 2011-03-29 04:17:26