sql - Syntax error for mysql while doing inner join -
SELECT t1. Type PERFORMS_SURGERY as a PS Inner (selection CPT, type of surgery) as T1 ON T1 .CPT = PS.CPT WHERE PS.PUsername = "klove30" < p> I get a syntax error as PR Inner from "PERFORMS_SURGERY" (choose search CPT, type of surgery) ". What is the syntax error?
select t1. By type, ... You should not have a comma after the last column in the selection list.
Change this to change:
SELECT t1 ... to type ...
Comments
Post a Comment