I am trying making a test on how to add multiple values into a column, which accepts multiple values.
For example, I have two tables
Table 1: contains `ID` (`int`) primary, `Name` (`varchar`)
Table 2: contains `ID` (reference to Table 1's `ID`), `Image` (`image`)
I created these tables, and I can insert data into table one, but how can I let it insert into multiple value column in table 2 (Image
)?
I can have Id and add images how much I want, I tried with stored procedure, using insert, but failed, because I want to check ID is the same to ID in table 1 using where statement not working in insert
For more examples.
ID: 1, Name: Willam, Image:[AnyImage] (More than 1 image)
ID: 2, Name: Edi, Image[Anyknownimage], Image[AnyNewImage] etc...
Anything that helps?