Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To illustrate my problem I will use the analogy of authors and books.

I have 2 tables "author" and "books". Authors are unique and books are tied to a specific authors using a foreign key constraint.

I was wondering if it was possible to have a column called "booknum" in the "books" table that auto-increment within the subset of a single author. So if the table has 100 rows and im inserting the 4th book of an author it puts a 4 into the "booknum" column.

db image

For example if the books table had 6 rows:

id | authors_id | booknum | name

1  | 1          | 1       | "hello"

2  | 1          | 2       | "goodbye"

3  | 2          | 1       | "booktitle"

4  | 3          | 1       | "more title"

5  | 1          | 3       | "nametwo"

6  | 2          | 2       | "nameone"

Is this possible within mysql or do I need to go and check for the last created book and manually increment when I add a book?

share|improve this question
This schema is not normalized. A book can have more authors. You need to keep books in separate table, and the relationship between the books and authors in another table. – Pentium10 Jun 4 '12 at 9:33
@Pentium10 then the example i used was bad. In my case things(books) can only be tied to one thing(author) but there can be many things(books) for one thing(author). – redslazer Jun 4 '12 at 9:45
You will have to manually increment and decrement at every insert, update and delete. – Clodoaldo Neto Jun 4 '12 at 12:06
1  
Proper sample code (here, SQL statements) is more useful than images and a table dump for sample data (images are never a good stand-in for sample code). Please use CREATE TABLE and INSERT ... VALUES for samples. Desired results don't need to be presented as sample code, as results are the output of code and not code themselves. – outis Jun 4 '12 at 20:39

1 Answer

up vote 2 down vote accepted

You could use a trigger:

CREATE TRIGGER biBooks 
  BEFORE INSERT ON books 
  FOR EACH ROW SET NEW.booknum = (
    SELECT COALESCE(MAX(booknum), 0) + 1 
      FROM books 
      WHERE authors_id = NEW.authors_id
  )
;
share|improve this answer
@outis: Thanks for that - hadn't considered that case! :) – eggyal Jun 4 '12 at 21:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.