I have sql script as
select E.EmployeeId, E.Name, A.FromDate, A.SPDays from
EEmployee E
cross join [dbo].[GetAppointmentDateAndServicePeriodDays](E.EmployeeId) A
where [dbo].[GetAppointmentDateAndServicePeriodDays] is a table valued function which
returns FromDate, SPDays. But I am getting error
The multi-part identifier "E.EmployeeId" could not be bound.
Can someone help me to correct this script? I would be grateful for any proper solution. Thank you.
Suresh ShewalePosted Dec 27, 2017, 5:52 AM
CompetetorPosted Dec 27, 2017, 5:26 AM
Suresh ShewalePosted Dec 27, 2017, 5:07 AM
Suresh ShewalePosted Dec 27, 2017, 2:46 AM
CompetetorPosted Dec 26, 2017, 11:38 PM
Amit KumarPosted Dec 26, 2017, 9:44 AM
Ankit SharmaPosted Dec 26, 2017, 8:53 AM