Thanks,
Peter
If you want to change all items that have "English Radio" to "Music Audio,"
you could do this:
1.)Find the department IDs
select Name,ID from Department where name='English Radio'
select Name,ID from Department where name='Music Audio'
2.)Update the item
Update item
Set DepartmentID='ID From 'Music Audio'
Where DepartmentID='ID From 'English Radio'
If this works out right, it will update any item that has 'English Radio' to
'Music Audio.'
Again, if this is what you're looking for. Someone might have a better way...
Before running any SQL Statement like this, make sure to backup!
Here's a sample SELECT query
SELECT itemlookupcode, description, price
from item
where departmentid = EnglishRadioDepartmentID
Hope this helps....