tags:

views:

27

answers:

1

Hello,

These are my table structures

tblcomment
- - - - - - - - - - - - -
comment_id
content_id
user_id
picture_id
comment
comment_time

tblpictures
- - - - - - - - - - - - -
content_id
title
picture_id

I am trying to update the content_id field on pictures using this but it doesnt seem to work ?

UPDATE `comments`
SET 
comments.content_id = pictures.content_id
WHERE
comments.picture_id = pictures.picture_id

I get this error

1054 - Unknown column 'pictures.picture_id' in 'where clause'

+3  A: 

UPDATE comments, pictures SET ...

Bozho
lol OMG.. ! Thanks .. Im such a noob
atif089