Have a MYSQL look up table that returns the points received for a certain place(P) among a number of finishers(N), with a variety of formats(points_id). Different point structures are used for different events. Some times the points awarded depend on the number of finishers(N) Sometimes they don't. Here is a short version of the table, with two sample structures. points_id -1 the points depends on N Point_id -2 the points don't.
points
points_id | P | N | points |
1 | 1 | 3 | 90 |
1 | 1 | 2 | 85 |
1 | 1 | 1 | 80 |
1 | 2 | 3 | 60 |
1 | 2 | 2 | 50 |
1 | 3 | 3 | 30 |
3 | 1 | | 100 |
3 | 2 | | 90 |
3 | 3 | | 80 |
3 | 3 | | 70 |
So my question; 1) is there a way to put the wildcard in the table data. eg if the N column that shows blank had a % in it and I did this query.
SELECT points from t1 WHERE points_id=3 and P=3 and N=2
It would return 96?? PS I know this doesn't work but is shows my idea.
2) I want it to be fast, may put it in a procedure to use in larger queries. I am guesing unless there is a very simple way to do what I show above. the fastest method will be to have rows for all of the different N's in the points_id =3 case. Is that true??
Thanks in advance This site is very helpful
Dave
SELECT points from t1 WHERE points_id=3 and P=3 and (N=2 OR N IS NULL)– prodigitalson Apr 27 '12 at 20:11