[Solved] showing records from two sql table alternatively [closed]
Use a sql select query similar to this…. select * from EmployeeDetails ed left join EmployeeEntries ee on ee.EmpId = ed.EmpId Note that this query will return all entries for each employee and each record will have the employee details as well. That means the employee details will be repeated for each entry the have … Read more