Quote:
SELECT pf.profilefieldid, pf.searchable pf.profilefieldcategoryid, pf.required, pf.type, pf.data, pf.def, pf.height
|
Oh. Wait.
There's your problem.
You're missing a comma.
It should be:
SELECT pf.profilefieldid, pf.searchable
, pf.profilefieldcategoryid, pf.required, pf.type, pf.data, pf.def, pf.height
You'll note that in the instructions, there is no comma shown in the portion you are directed to replace. Therefore, the original comma remains
after the new code is pasted in.