I am using this Sql command
INSERT INTO SAMPLES (reportno, samplename, analysisname) 
       VALUES (1, 'Lemon', 'ecobali1,ecobali2,ecobali3)
My structure will be :
REPORT NO : 1
   SAMPLE : LEMON
   ANALYSIS
   Ecobali1
   Ecobali2
   Ecobali3
Later on I need to get analysisnames one by one to enter details;
SELECT * FROM SAMPLES WHERE reportno =1
My question is:
Is it possible to develop such a structure?
I am stuck here since I need to add multiple values to one row and get them one by one
Can I use TVP here and how?
 
     
     
     
     
    