Auswertung/Anzahl von Gutscheine
Gutscheine 2017:
SELECT count( * ) FROM content_type_gutscheine WHERE field_gltig_bis_value LIKE '%.2017'
SELECT count( * ) FROM content_type_gutscheine WHERE field_gltig_bis_value = '31.12.2017'
SELECT title, field_gutscheinwert_value, field_affiliate_programm_value, field_gltig_bis_value
FROM `content_type_gutscheine`
LEFT OUTER JOIN `node` ON content_type_gutscheine.nid = node.nid
WHERE field_gltig_bis_value = '17.01.2017'
AND TYPE = 'gutscheine'
AND status = 1
ORDER BY title
LIMIT 0 , 300
- Weiterlesen über Auswertung/Anzahl von Gutscheine
- Anmelden, um Kommentare verfassen zu können