33 lines
1.5 KiB
SQL
33 lines
1.5 KiB
SQL
-- Licensed to the Apache Software Foundation (ASF) under one
|
|
-- or more contributor license agreements. See the NOTICE file
|
|
-- distributed with this work for additional information
|
|
-- regarding copyright ownership. The ASF licenses this file
|
|
-- to you under the Apache License, Version 2.0 (the
|
|
-- "License"); you may not use this file except in compliance
|
|
-- with the License. You may obtain a copy of the License at
|
|
--
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
--
|
|
-- Unless required by applicable law or agreed to in writing,
|
|
-- software distributed under the License is distributed on an
|
|
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
-- KIND, either express or implied. See the License for the
|
|
-- specific language governing permissions and limitations
|
|
-- under the License.
|
|
CREATE DATABASE test;
|
|
USE test;
|
|
DROP TABLE IF EXISTS `orders`;
|
|
CREATE TABLE orders (
|
|
order_id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
order_date DATETIME NOT NULL,
|
|
customer_name VARCHAR(255) NOT NULL,
|
|
price DECIMAL(10, 5) NOT NULL,
|
|
product_id INTEGER NOT NULL,
|
|
order_status BOOLEAN NOT NULL -- Whether order has been placed
|
|
) AUTO_INCREMENT = 10001;
|
|
|
|
INSERT INTO orders
|
|
VALUES (default, '2020-07-05 10:08:22', 'Jark', 50.50, 102, false),
|
|
(default, '2020-07-05 10:11:09', 'Sally', 15.00, 105, false),
|
|
(default, '2020-07-05 12:00:30', 'Edward', 25.25, 106, false);
|