create table news( keyword int primary key, html varchar(255), name varchar(255), text varchar(255), price varchar(255) )row format delimited fields terminated by ‘;’ stored as textfile;
时间: 2024-04-06 16:33:14 浏览: 37
create table
5星 · 资源好评率100%
这是一个 SQL 语句,用于创建一个名为 news 的表。其中包含 5 个字段:keyword、html、name、text 和 price,其中 keyword 是主键。每一行的字段值之间用分号 (;) 分隔,表的存储格式为文本文件。需要注意的是,该语句的语法可能会因不同的数据库管理系统而略有不同。
阅读全文