利用 SQL ,数据表News包含的字段有:编号、姓名、标题、关键字、内容、类型、来源部门和日期的字段说明

来源:百度知道 编辑:UC知道 时间:2024/05/26 23:54:54
字段说明全部写出
等待急用
谢了先

??是说用SQL建表吗?

CREATE TABLE News
(
id int not null primary key,
name char(20) not null,
title varchar(50) not null,
keyword varchar(50),
info text,
type char(20) not null,
dpt char(20) not null,
pubdate date not null
);

你自己建的表让别人说明什么?