Recent content by CabbageCake

  1. C

    Insert multiple rows values with MS Access

    Hi guys, I have a following table: create table animal ( animal_id integer not null primary key, name varchar(40) not null, spieces varchar(40) not null ) I would like to fill it with lots of records which I want to insert into at time. But I don't know how I can start it:) Here is my...
  2. C

    How can I DROP the PrimaryKey?

    Very Thaks your suggestion. I tried out with Access 2007, and it works fine.
  3. C

    How can I DROP the PrimaryKey?

    Welcome Everyone, I am new on this forum, and I am looking forward to learn some tricks related to SQL via MS Access. I have a following table: create table Company (Id numeric primary key, FirstName varchar(50), LastName varchar(50) ) And now, I would like to drop my Id column with the...
Back
Top Bottom