Subject | Re: [ib-support] Newbie question IB about select |
---|---|
Author | Helen Borrie |
Post date | 2002-08-28T13:20:08Z |
At 10:17 AM 28-08-02 +0000, you wrote:
understand your problem. In what way doesn't it work...?
If you have columns named Year and Month in IB 6 or Firebird, they must be
quoted identifiers, or you would not have been allowed to create
them. Year and Month are reserved words. Are they columns? If so, this
should work:
select "Year", "Month", SUM(Sales) from sales group by "Month";
(Sales would need quotes too if you created the database with a tool that
forces quoted identifiers...)
heLen
>Hello,When you post support questions, provide enough information to help us
>
>I am a newbie to IB.
>
>In MySQL I can use the next select:
>
> select Year, Month, SUM(Sales) from sales group by Month;
>
>However, this does not seem to work in IB.
understand your problem. In what way doesn't it work...?
If you have columns named Year and Month in IB 6 or Firebird, they must be
quoted identifiers, or you would not have been allowed to create
them. Year and Month are reserved words. Are they columns? If so, this
should work:
select "Year", "Month", SUM(Sales) from sales group by "Month";
(Sales would need quotes too if you created the database with a tool that
forces quoted identifiers...)
heLen