There is already an object named 'items' in the database.

Apr 2 2021 12:28 PM
how fix this prodlem
  1. create database why  
  2. create table items(  
  3. iid int identity(1,1) primary key,  
  4. name varchar(250) not null,  
  5. category varchar(250) not null,  
  6. price bigint not null  
  7. );  
  8. select * from items
 

Answers (6)