上記のデータベースが提供されます。
私は EmployeeGood Employee
と別の Employeeを持っていExcellent Employee
ます。Excellent Employee
部門を運営しています。
私は自分のデータベースを更新したいので、Good Employee
率いる部門で働いていますExcellent Employee
このようなことは可能ですか?
UPDATE Employee
SET Department = (
SELECT AID
FROM Department
WHERE AID = Department AND Employee.Name = 'Excellent Employee')
WHERE Name = 'Good Employee' LIMIT 1;
(上記のステートメントは機能しません)