在开发过程中为了测试代码,要创建数据库作为测试对象,有时手工创建比较麻烦,听说可以帮我们生成sql语句,借此机会试了一试,果真如此,而且还可以帮你随机插入测试数据在刚刚建好的表中。废话不说了,下面来看看效果。
创建一个叫book的表:
please write ddl to create a table contain 4 fields,1、date type name is “date” 2、string type name is “name” 3、 integer type name is “count” 4、money type name is “price”
他会回答你:
CREATE TABLE table_name (
date date,
name varchar(255),
count integer,
price decimal(10, 2)
);
要插入一些测试数据在上面的表中,你可以说:
Randomly insert some data into the book table mentioned above
他会回答你:
INSERT INTO book (date, name, count, price)
VALUES ('2022-01-01', 'Book A', 10, 19.99),
('2022-01-02', 'Book B', 20, 29.99),
('2022-01-03', 'Book C', 15, 24.99),
('2022-01-04', 'Book D', 25, 39.99),
('2022-01-05', 'Book E', 5, 9.99);
© 版权声明
文章版权归作者所有,未经允许请勿转载。
相关文章
暂无评论...