~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
SELECT value from data_dictionary.counter LIMIT 10;
value
#
#
#
#
#
#
#
#
#
#
CREATE TABLE t1 SELECT value from data_dictionary.counter LIMIT 20;
SELECT count(*) from t1;
count(*)
20
INSERT INTO t1 SELECT value from data_dictionary.counter LIMIT 10;
SELECT count(*) from t1;
count(*)
30
SELECT value from data_dictionary.counter GROUP BY value LIMIT 10;
value
#
select count(value) from data_dictionary.counter;
count(value)
#
DROP TABLE t1;