具有连接的mysql group by子句

时间:2017-01-03 03:59:16

标签: mysql

我在数据库中有两个表

tabels

我解雇了这个查询

HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(@"http://img.khoahoc.tv/photos/image/2015/05/14/hang_13.jpg";);

HttpWebResponse response = (HttpWebResponse)req.GetResponse();

Stream stream = response.GetResponseStream();

Image img = Image.FromStream(stream);

stream.Close();

MessageBox.Show("Height: " + img.Height + " Width: " + img.Width);

收到此错误

SELECT  orderdate,priceeach 
FROM  orders AS T1 
INNER JOIN orderdetails AS T2 
ON T1.orderNumber = T2.orderNumber 
GROUP BY orderdate;

请帮我解决这个问题,并请先说明哪个语句或子句按顺序执行,以及为什么我会收到此错误。

因为我尝试使用两个不同的数据库(虚拟数据库)进行相同的查询,并且它有效。

0 个答案:

没有答案