Viewing 3 posts - 1 through 3 (of 3 total)
Thanks your method works! Just needed to truncate WorkOrder table and resubmit query.
March 9, 2012 at 2:28 am
This is what I did:
insert into w.CategoryID
select distinct c.CategoryID, c.CategoryName
from Category c
join WorkOrder w join WorkOrderDetailedReports wod
on c.CategoryName = wod.Category
on w.WorkOrderID = wod.Id
What would you suggest?
March 9, 2012 at 1:39 am
Thanks for the response. I just stared using T-SQL and SQL Server, so this is all new to me. I was given a task to normalize data and produce a...
March 9, 2012 at 1:28 am
Viewing 3 posts - 1 through 3 (of 3 total)