SQL Join Query - -


i need perform join where:

  1. i interested in pulling person id's 1 of ids contains value 'n'
  2. then need perform join return name of ids

enter image description here

hope helps

select per.personid,per.name ,idn.identifier  person per inner join idetifier idn on (idn.personid = per.personid ,  idn.identifier '%n%') 

Comments

Popular posts from this blog

php - Displaying JSON data posts for blog using just the post id -

docusignapi - Documents restrictions within a package -

javascript - angular.forEach loop with $http.get -