Jump to content

rfleming

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

rfleming's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Perfect thank you very much
  2. 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,
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.