Jump to content

[SOLVED] Update using the value of a CONCAT statement.


hilltopper06

Recommended Posts

I have a form that sends data to a mysql database.  From there it is processed using a PHP script.  I use ID numbers to identify individual records (think peoples names).  I have a placeholder field set up that I want to contain their actual name, but I do not know how to set a field to the value of a CONCAT statement.  For example, I am wanting to do the following:

 

$sql = "update attn_track a SET fullname = CONCAT_WS(', ',b.LastName,b.Firstname) FROM tea_tbl b WHERE a.proc = 'processing' AND a.TeacherSelect = b.fabrik_internal_id IN (SELECT TeacherSelect FROM attn_track WHERE proc = 'processing') ";

mysql_query($sql);

 

This is returning NULL for fullname.  How do I set fullname to the value of the concat statement?  Thanks.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.