You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
323 B
23 lines
323 B
INSERT INTO init_file.startup VALUES ( NOW() );
|
|
SELECT * INTO @X FROM init_file.startup limit 0,1;
|
|
SELECT * INTO @Y FROM init_file.startup limit 1,1;
|
|
SELECT YEAR(@X)-YEAR(@Y);
|
|
YEAR(@X)-YEAR(@Y)
|
|
0
|
|
DROP DATABASE init_file;
|
|
ok
|
|
end of 4.1 tests
|
|
select * from t1;
|
|
x
|
|
3
|
|
5
|
|
7
|
|
11
|
|
13
|
|
select * from t2;
|
|
y
|
|
30
|
|
3
|
|
11
|
|
13
|
|
drop table t1, t2;
|
|
|