Home >Database >Mysql Tutorial >mysql-这个sql有错吗?运行的时候提示如图

mysql-这个sql有错吗?运行的时候提示如图

WBOY
WBOYOriginal
2016-06-06 09:41:07937browse

mysqlsql

create table orders(
id int,
product varchar(20),
price float
);

insert into orders(id,product,price) values(1,'电视',900);
insert into orders(id,product,price) values(2,'冰箱',900);
insert into orders(id,product,price) values(3,'洗衣机',900);
select * from orders;
图片说明

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn