PDA

View Full Version : Move Aim numbers to User Profile Field (field5)


Zak Ulysses
01-17-2009, 12:23 PM
Hello,

After data import from phpbb forum all numbers concerning polish instant messenger "Gadu-Gadu" I can find it in Aim field.

How to copy (move) all these numbers from Aim field to new User Profile Field (field5)?
I want only copy (cut) in my vBulletin database all account numbers from Aim field to new User Profile Field (field5).

https://vborg.vbsupport.ru/

In vBulletin.com I got following hint:
You will need to join the user table and the userfield table on userid, and update userfield.field5 from user.aim.

Could you please help me with some script or sql query?
Thank you in advance.

Zak Ulysses
01-23-2009, 06:25 PM
Answer below:
update userfield, user set userfield.field5 = user.aim where userfield.userid = user.userid;