Hi all,
My current project requires me to return three VARCHAR(45) fields back in a resultset containing 1 VARCHAR.
The code needs to return FIRST_NAME MIDDLE_NAME LAST_NAME as one string. I have tried using the + operator in the query statement to no luck. it just outputs a bunch of 0's. I have tried searching google but no luck. Any ideas?
Version: 5.0
The table's CREATE code
CREATE TABLE `people` (
`PEOPLE_ID` int(10) unsigned NOT NULL auto_increment,
`LAST_NAME` varchar(45) NOT NULL,
`FIRST_NAME` varchar(45) NOT NULL,
`MIDDLE_NAME` varchar(45) NOT NULL,
PRIMARY KEY (`PEOPLE_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1
I think that is all the info i have on it. Yell at me if i forgot anything.
Thank you,