I have 2 tables
Favourites Table
----------------------------------------------------------------------
| FavouritesID | CompanyID | CustomerID | ProfilePhoto | CompanyName |
----------------------------------------------------------------------
| |
| |
| |
----------------------------------------------------------------------
Profile Table
-------------------------------------------
| CompanyID | CompanyName | ProfilePhoto |
-------------------------------------------
| 1 | Nike |http://loca.. |
| 2 | Adidas |http://loca.. |
| 3 | PaulSmith |http://loca.. |
-------------------------------------------
I want to INSERT CompanyName and ProfilePhoto into the Favourites Table using the CompanyID
So when a row is inserted to Favourites table ex CompanyID=1, the CompanyName=Nike
and ProfilePhoto=htpp://local... will be inserted to favourites table, getting info from the Profile Table.
This is what I have so far:
CREATE TRIGGER `Favourites` BEFORE INSERT ON `Favourites`
FOR EACH ROW BEGIN
INSERT INTO Favourites SET ProfilePhoto = (SELECT ProfilePhoto FROM Profile WHERE NEW.CompanyID = CompanyID);
END
What are the errors in my code? It does not work

ProfilePhotoof aFavourite,JOINin yourProfiletable. – ta.speot.is Feb 6 at 5:00