DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Inner Join (Grabs All Info That Matches Both Tables)
// Inner Join (Grabs all Info that matches both tables)
Select te.ecr_number From Tbl_Package tp join tbl_ecr te on te.ecp_id = tp.ecp_id Where Package_Number = 0





