Database error: Invalid SQL:
create temporary table tmp_dokumenti
select
SQL_CALC_FOUND_ROWS
dokument_id,
naziv_hr,
naziv_en,
opis_hr,
opis_en,
url,
datoteka_hr,
datoteka_en,
datum_sjednice,
date_format(datum_sjednice, '%d.%m.%Y') as datum_sjednice_format,
datum,
date_format(datum, '%d.%m.%Y') as datum_format,
aktivno,
korisnik_id
from
dokumenti
where
aktivno = '1' and
kategorija_id = 'ostalo' and
naziv_en != ''
order by
datum_sjednice DESC, datum DESC
limit
<,
10
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 '<,
10' at line 27)
Session halted.