T
|
thesofa 10/1/2006 |
it is possible to concat the fields in the sql query page, see below> SELECT
|
S
|
scy author 10/1/2006 |
I'm not sure this would work. |
T
|
thesofa 10/1/2006 |
I would not store the actual names, I assume you have given each record in the people table a unique number. |
S
|
scy author 10/2/2006 |
They all have unique numbers but I am not sure it is possible to edit tables with joins. This needs to be editable so I would opt for the alternative "Before update event" however I am not sure of the code to put in here? |
T
|
thesofa 10/2/2006 |
They all have unique numbers but I am not sure it is possible to edit tables with joins. This needs to be editable so I would opt for the alternative "Before update event" however I am not sure of the code to put in here?
|
S
|
scy author 10/2/2006 |
People table has |
J
|
Jane 10/2/2006 |
Hi, select `EventID`, `Event`, `EventType`, `Details, concat(`FirstName`,' ',`FamilyName`) as `OOD`, `AOOD` ... from Fixtures inner join People on (`Fixtures`.`field1`=`People`.`field2`)
|