UPDATE with INNER JOIN
问题 I'm using JavaDB and working with two tables in the same database. I'm trying to update the PrevSales column in the "SalesResp" table with the values that are in the "SellDate" column of the "Vehicles" table when the Vehicle table's SellDate is before a the specified date. I'm matching the data between the two tables by using the "VIN" column that is present in both tables. I continually get errors surrounding the inner join in my code, SQL state 42x01. UPDATE SALESRESP JOIN VEHICLES ON