Trying to update a table using data from another table, and it doesn't like my syntax.

update tableA
set fieldA = 'Customer'
from tableA, tableB
where custnoA = custnoB
and fieldB = 'Customer'
and fieldA = ''

"Keyword FROM not expected....