You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
10 lines
595 B
SQL
Executable File
10 lines
595 B
SQL
Executable File
set max_length_for_sort_data = 4096;
|
|
select hex(max(sak_mei)) from idbstrcoll where sak_bunc=11;
|
|
select hex(sak_mei) from idbstrcoll where sak_bunc=11 order by sak_mei desc limit 1;
|
|
select hex(min(sak_mei)) from idbstrcoll where sak_bunc=11;
|
|
select hex(sak_mei) from idbstrcoll where sak_bunc=11 order by sak_mei asc limit 1;
|
|
select max(sak_mei) from idbstrcoll where sak_bunc=11;
|
|
select sak_mei from idbstrcoll where sak_bunc=11 order by sak_mei desc limit 1;
|
|
select sak_mei from idbstrcoll where sak_bunc=11 order by sak_mei asc limit 1;
|
|
select min(sak_mei) from idbstrcoll where sak_bunc=11;
|