Saving data in a SQL Server 2016 database for a specfic report
问题 I was not sure how to title this but let me explain. I need to pull all of the publication article ID's from PubMed for every member of a Cancer Center. The ID's are normally 6 or 7 digest long. Currently I'm using a Stored Proc to save the id's in a comma separated string with the email address is the unique ID for the member. INSERT INTO [dbo].[ADMIN_Publications] ([Organization], [email], [PMID]) VALUES (@Organization, @Email, @PMID, ) The PMID's could be like 23579449,25465297,26512957