Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by carter68

  1. carter68

    Error when inserting rows

    Try recreating the table with auto_increment in the AutoNo field Create table Blah ( AutoNo int unsigned auto_increment, Blah type, Primary key (AutoNo); then when you insert the data from your old table into the new one and don't specify the value of the AutoNo field. Example: Insert...
  2. carter68

    Need to Prevent Table Inserts Based on Condition

    I have, lets say two tables, one Course, and the other Student. Table: Course Attributes: CourseID StudentID Table: Student Attributes: StudentID Name How do I prevent the student from being able to register for more than 10 classes. Can I specify this when I...

Part and Inventory Search

Back
Top