CREATE TABLE enriched_orders ( order_id INT, order_date TIMESTAMP(0), customer_name STRING, price DECIMAL(10, 5), product_id INT, order_status BOOLEAN, product_name STRING, product_description STRING, shipment_id INT, origin STRING, destination STRING, is_arrived BOOLEAN, PRIMARY KEY (order_id) NOT ENFORCED ) WITH ( 'connector' = 'elasticsearch-7', 'hosts' = 'http://localhost:9200', 'index' = 'enriched_orders' );
时间: 2024-04-28 15:25:14 浏览: 114
Correction to_ The effect of a blue enriched white light on
这是一个创建名为 "enriched_orders" 的表的 SQL 语句,其包含多个列,包括 order_id、order_date、customer_name、price、product_id、order_status、product_name、product_description、shipment_id、origin、destination 和 is_arrived。其中,order_id 列为主键,但未强制执行。此外,该表是通过 Elasticsearch-7 连接器连接到本地主机的 Elasticsearch 数据库,并使用 URL "http://localhost:9200" 进行连接。该表位于名为 enriched_orders 的索引中。
阅读全文