Microsoft
Software
Hardware
Network
Question : Insert into ... where problems
Hi Experts
I have a small problem.
i am trying to insert a birthday from one table to another with the following statement;
INSERT INTO consumerattributes( BirthDate )
SELECT 'birthday'
FROM customers
WHERE `consumerattributes`.`cust
omerid` = `customers`.`customerId`
I get this error :
#1054 - Unknown column 'consumerattributes.custom
erid' in 'where clause'
What I'm trying to do is to populate the birthday field with the info from a older database, therefor the WHERE `consumerattributes`.`cust
omerid` = `customers`.`customerId`
I know that `consumerattributes`.`cust
omerid` exist. - It works if i just use
WHERE `customerid` = `customers`.`customerId`
but it just inserts the data in new rows :'(
I'm really hoping that you are able to help
:)
/DeviliX
Answer : Insert into ... where problems
Try this...
INSERT INTO consumerattributes([BirthD
ate])
SELECT Birthday FROM customers WHERE consumerattributes.custome
rid = customers.customerId
Random Solutions
Windows 7 installation - "no drives were found"
Got infected with Antimalware Doctor security center not working vista ultimate
These joins baffles me
IE 8 drop list of favorites
TSQL what is the cleanest way to generate a date format of YYYYMMDD
LNK2019: unresolved external symbol
Open Office Text and python: extract text word by word
Windows 2003 server VPN client need access to Internet via server
What is wrong with the scaler function
Problem with require('./wp-blog-header.
php'); The ./ is throwing a 500 error message.