1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-15 22:22:17 +03:00
Files
mariadb-columnstore-engine/mysql/queries/working_dml/misc/subupd002.sql
2016-01-06 14:08:59 -06:00

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;