Utilisation d'un alias
Si vous attribuez un alias à une table ou à une vue, vous doit utiliser l'alias pour spécifier les colonnes de la table.
Exemples
Utilisation correcte :
update Fruit set soort = 'pisang' where ...
update Fruit set Fruit.soort = 'pisang' where ...
update Fruit F set soort = 'pisang' where ...
update Fruit F set F.soort = 'pisang' where ...
Utilisation incorrecte :
update Fruit F set Fruit.soort = 'pisang' where ...