
|
If you were logged in you would be able to see more operations.
|
|
|
HSCALE
Created: 16/Apr/08 10:39 PM
Updated: 20/Apr/08 08:02 PM
|
|
| Component/s: |
Query Analyzer
|
| Affects Version/s: |
None
|
| Fix Version/s: |
0.2
|
|
|
This does not work:
SELECT COUNT( * ) FROM table;
We don't want to handle queries like this.
|
|
Description
|
This does not work:
SELECT COUNT( * ) FROM table;
We don't want to handle queries like this. |
Show » |
|
{code}
SELECT COUNT(*) FROM table;
SELECT * FROM table WHERE somcolumn = ABS(someothercolumn);
{code}