19 lines
345 B
MySQL
19 lines
345 B
MySQL
|
CREATE TABLE orders (
|
||
|
order_uid BIGINT,
|
||
|
product_id BIGINT,
|
||
|
price DECIMAL(32, 2),
|
||
|
order_time TIMESTAMP(3)
|
||
|
) WITH (
|
||
|
'connector' = 'datagen'
|
||
|
);
|
||
|
|
||
|
CREATE TABLE orders (
|
||
|
order_uid BIGINT,
|
||
|
product_id BIGINT,
|
||
|
price DECIMAL(32, 2),
|
||
|
order_time TIMESTAMP(3)
|
||
|
) WITH (
|
||
|
'connector' = 'datagen'
|
||
|
);
|
||
|
|
||
|
use cat1.
|