Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
134f660e
Commit
134f660e
authored
May 31, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
olap.result:
Post merge corrections. mysql-test/r/olap.result: Post merge corrections.
parent
0f675ad4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
mysql-test/r/olap.result
mysql-test/r/olap.result
+6
-6
No files found.
mysql-test/r/olap.result
View file @
134f660e
...
@@ -249,11 +249,11 @@ select product, country_id , year, sum(profit) from t1 group by product, country
...
@@ -249,11 +249,11 @@ select product, country_id , year, sum(profit) from t1 group by product, country
product country_id year sum(profit)
product country_id year sum(profit)
select concat(':',product,':'), sum(profit),avg(profit) from t1 group by product with rollup;
select concat(':',product,':'), sum(profit),avg(profit) from t1 group by product with rollup;
concat(':',product,':') sum(profit) avg(profit)
concat(':',product,':') sum(profit) avg(profit)
:Calculator: 275 68.7500
:Calculator: 275 68.7500
0
:Computer: 6900 1380.0000
:Computer: 6900 1380.0000
0
:Phone: 10 10.0000
:Phone: 10 10.0000
0
:TV: 600 120.0000
:TV: 600 120.0000
0
:TV: 7785 519.
0000
NULL 7785 519.0
0000
select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube;
select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube;
ERROR 42000: This version of MySQL doesn't yet support 'CUBE'
ERROR 42000: This version of MySQL doesn't yet support 'CUBE'
explain select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube;
explain select product, country_id , year, sum(profit) from t1 group by product, country_id, year with cube;
...
@@ -503,7 +503,7 @@ a+1
...
@@ -503,7 +503,7 @@ a+1
NULL
NULL
SELECT a+SUM(a) FROM t1 GROUP BY a WITH ROLLUP;
SELECT a+SUM(a) FROM t1 GROUP BY a WITH ROLLUP;
a+SUM(a)
a+SUM(a)
2
3
4
4
NULL
NULL
SELECT a, a+1 as b FROM t1 GROUP BY a WITH ROLLUP HAVING b > 2;
SELECT a, a+1 as b FROM t1 GROUP BY a WITH ROLLUP HAVING b > 2;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment