Updated on 2023-10-23 GMT+08:00

Concurrent Write Examples

This section uses the test table as an example to describe how to perform concurrent INSERT and DELETE in the same table, concurrent INSERT in the same table, concurrent UPDATE in the same table, and concurrent import and queries.

1
CREATE TABLE test(id int, name char(50), address varchar(255));