create table tabname(col1 type1 [not null] [primary key] ,col2 type2 [not null],..)这个语句不能执行

2025-01-20 21:53:49
推荐回答(2个)
回答1:

你的创建表就是这么写的?
create table tablename
(
id int primary key,
name varchar(20) not null
)
这样试试。

回答2:

CREATE TABLE [dbo].[a001] (
col1 [int] NOT NULL primary key , col2 [int] NOT NULL )