when i run the following query with an inner join it gives me the following error
"ORA-00933: SQL command not properly ended" in my from clause.Am i not positioning it in the correct format? 
update
             Table t
    set
         t.gross =4000
 FROM Schema1.Table  t INNER JOIN schema2.TYPES AS gt ON t.GRADE=gt.DESCRIPTION
    where
       GT.GRADE_TYPE_CODE='test'
 
     
     
    