i want to create a database that consists all products rating and notes purchase by user
suppose that i create a table name "Users_rating_product" that consists some column
user_id ->INT
company->Varchar
product1 -> 3 (rating of product out of 5)|(review of product)
product2-> 4(rating)|(some review)
i want to know how can i do it in mysql . i'm using phpmyadmin for database creation
table looks like
user_id  | company  |Ac                 | TV           | fridge 
1        | goderaj  |3 ,take more power |4,less power  |5,efficient
i want to know how can i do this so that both rating and notes for product display in same column
 
     
     
    