WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND aces.Club = clubs.clubID
LIMIT 1' at line 9]
SELECT UNIX_TIMESTAMP(aces.aceDate) AS faceDate, aces.GolferFirst, aces.GolferLast, aces.GolferID,
aces.HoleNo, aces.Par, aces.Yardage, aces.GolferAge, aces.GolferCity, aces.GolferState,
aces.GolferCountry, aces.FirstAce, aces.GolferMiddle, aces.CourseName,
aces.CourseCountry, aces.CourseCity, clubs.club, aces.Comments, aces.HIOComments,
UNIX_TIMESTAMP(aces.gotw) AS gotw, aces.CourseState, aces.photo, aces.DateSubmitted,
UNIX_TIMESTAMP(aces.bestQuote) AS bestQuote
FROM aces, clubs
WHERE aces.golferID =
AND aces.Club = clubs.clubID
LIMIT 1;
WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY commentDateTime DESC' at line 4]
SELECT comment, commentatorName, commentatorEmail, UNIX_TIMESTAMP(commentDateTime) AS fdate
FROM aceComments
WHERE golferID =
ORDER BY commentDateTime DESC