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
9 lines
270 B
Plaintext
9 lines
270 B
Plaintext
drop table if exists a;
|
|
create table a (a char(20)) engine=infinidb;
|
|
insert into a values ('x');
|
|
select * from a;
|
|
update a join a y on a.a = y.a set a.a='99';
|
|
select * from a;
|
|
delete from a where a in (select x.a from (select a from a) x);
|
|
select * from a;
|
|
drop table a; |