Database error: Invalid SQL:
SELECT RECORDINGS.recordingID,
recordingArtwork,
recordingNotes,
recordingTitle,
recordingDate,
recordingMedium,
recordingPrice,
recordingQty,
DATE_FORMAT(recordingDate,'%m/%d/%Y') as date
FROM RECORDINGS
INNER JOIN GroupRecordingJoin
ON GroupRecordingJoin.recordingID = RECORDINGS.recordingID
INNER JOIN GROUPS
ON GroupRecordingJoin.groupID = GROUPS.groupID
WHERE groupName = "Kapena"
LIMIT -1,1
MySQL Error: 1064 (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 '-1,1' at line 19)
Session halted.