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
14 lines
400 B
SQL
Executable File
14 lines
400 B
SQL
Executable File
drop table if exists trow;
|
|
create table trow(col1 int, col2 int) engine=infinidb;
|
|
insert into trow values(1,2),(3,4);
|
|
select * from trow;
|
|
update trow set col1 = 10;
|
|
select * from trow;
|
|
update trow set col1 = 11 where col2=20;
|
|
update trow set col1 = 11;
|
|
update trow set col1 = 12 where col2=20;
|
|
select * from trow;
|
|
delete from trow;
|
|
delete from trow where col2=20;
|
|
select * from trow;
|
|
drop table trow; |