Results 1 to 3 of 3
  1. #1
    rafetirmak is offline Novice
    Windows 10 Access 2013 64bit
    Join Date
    Dec 2018
    Posts
    1

    SQL query for co-citation

    1) I have data that represent citing and cited scholar articles
    Source Target
    Article ID Article ID


    2) I need to identify articles that cite two or more article (co-citation coupling)

    3) You can find a figure that represents the problem
    http://advances.sciencemag.org/conte...600&carousel=1


    4) I could not succeed to develop a proper query

    5) Does anyone have a working suggestion

  2. #2
    orange's Avatar
    orange is offline Moderator
    Windows 10 Access 2010 32bit
    Join Date
    Sep 2009
    Location
    Ottawa, Ontario, Canada; West Palm Beach FL
    Posts
    16,725
    I approved your post so others could see it and respond.
    Many will not download from sites other than the forum.

  3. #3
    Join Date
    Apr 2017
    Posts
    1,679
    You need a table, where all citations in any article are registred. E.g.
    tblArticles: ArticleID, ...;
    tblCitations: CitationID, ArticleID, CitatedArticleID, ...

    The query
    Code:
    SELECT ArticleID, COUNT(CitatedArticle) AS CitationsCnt FROM tblCitations GROUP BY ArticleID HAVING COUNT(CitatedArticle) > 1
    returns the list of articles which have more than 1 citations.

Please reply to this thread with any new information or opinions.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums