Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8547439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:15:59+00:00 2026-06-11T13:15:59+00:00

I’m creating a page where I want users to be able to book a

  • 0

I’m creating a page where I want users to be able to book a seat for an event.


  • 1 user can only book 1 seat
  • users have no seat selected upon login, first after buying into a spot
  • Need to able to clear seats table, without loosing anything from user-table (except of course the assigned seats.)

I’ve created two tables, and since I’m pretty new to mySQL, I wanted to check if this was done correctly:

  • members-table:
  • user_id int(8) Not null auto_increment
  • user_name varchar(30) Not null
  • user_pass varchar(255) Not null
  • seat_ID smallint(6) Yes NULL

  • seats-table
  • seat_ID smallint(6) No auto_increment
  • user_id smallint(6) Yes NULL
  • seat_status tinyint(4) Yes NULL
  • seat_status tinyint(4) Yes NULL

I’ve created 2 FK-refs:

ALTER TABLE seats
ADD CONSTRAINT FK_seats  
FOREIGN KEY (user_id) REFERENCES members(user_id)  
ON UPDATE CASCADE  
ON DELETE CASCADE;

ALTER TABLE seats
ADD CONSTRAINT FK_seats  
FOREIGN KEY (seat_ID) REFERENCES members(seat_ID)  
ON UPDATE CASCADE  
ON DELETE CASCADE;

Am I on the right track? Will I be able to progress to a decent final product with this setup? suggestions/improvements? I don’t want to start all over in a couple of weeks because the database structure is of poor quality.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T13:16:01+00:00Added an answer on June 11, 2026 at 1:16 pm

    First of all I don’t see why you’re using a second table if any user can only hold one seat at any given time, secondly user_id in seats-table should be the same size as user_id in members table namely int(8), otherwise you won’t be able to seat users after a while, third issue is the duplication of seat_status, I suppose that was a mistake or you had another name for it.
    In my opinion a better idea is to use a single table if it’s a 1->1 mapping and define it as

    CREATE TABLE `members-table` (
       user_id int(8) not null auto_increment,
       user_name varchar(30) not null,
       user_pass varchar(255) not null,
       seat -- your type choice, should be nullable if not seated
    );
    

    Clearing the seats with this config would be as simple as

    UPDATE `members-table` SET `seat` = NULL;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a jquery bug and I've been looking for hours now, I can't
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I want to count how many characters a certain string has in PHP, but
Basically, what I'm trying to create is a page of div tags, each has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.