Ai đó có thể giúp tôi điều chỉnh truy vấn SQL này không?Tại sao kết quả SQL này trong Quét chỉ mục thay vì Tìm kiếm chỉ mục?
SELECT a.BuildingID, a.ApplicantID, a.ACH, a.Address, a.Age, a.AgentID, a.AmenityFee, a.ApartmentID, a.Applied, a.AptStatus, a.BikeLocation, a.BikeRent, a.Children,
a.CurrentResidence, a.Email, a.Employer, a.FamilyStatus, a.HCMembers, a.HCPayment, a.Income, a.Industry, a.Name, a.OccupancyTimeframe, a.OnSiteID,
a.Other, a.ParkingFee, a.Pets, a.PetFee, a.Phone, a.Source, a.StorageLocation, a.StorageRent, a.TenantSigned, a.WasherDryer, a.WasherRent, a.WorkLocation,
a.WorkPhone, a.CreationDate, a.CreatedBy, a.LastUpdated, a.UpdatedBy
FROM dbo.NPapplicants AS a INNER JOIN
dbo.NPapartments AS apt ON a.BuildingID = apt.BuildingID AND a.ApartmentID = apt.ApartmentID
WHERE (apt.Offline = 0)
AND (apt.MA = 'M')
.
Đây là kế hoạch thực hiện như sau:
.
Những gì tôi không hiểu là tại sao tôi nhận được một Scan Index cho NPapplicants. Tôi có một chỉ số bao gồm BuildingID và ApartmentID. Không nên được sử dụng?
Có bao nhiêu hàng trong bảng NPapplicants? –
hình ảnh hiển thị 7775, từ số liệu thống kê cập nhật mới nhất – RichardTheKiwi