You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-15 22:22:17 +03:00
9 lines
204 B
SQL
9 lines
204 B
SQL
set autocommit=0;
|
|
|
|
update nation
|
|
set n_regionkey = (select o_custkey from orders where o_orderkey = n_nationkey and o_orderkey <= 40);
|
|
|
|
select n_nationkey, n_regionkey from nation order by 1;
|
|
|
|
rollback;
|