Kyle Hudson
Kyle Hudson

Reputation: 898

mysql date-format returns null

I have the following SQL query. It returns NULL for the 'invoice_date'.

SELECT * , fk_uid AS userId, fk_ivid AS invoice_uid, (

SELECT company
FROM tbl_users
WHERE pk_uid = userId
) AS invoice_customer, (

SELECT DATE_FORMAT( '%d/%m/%y', purchased ) AS invoice_date
FROM _invoices
WHERE invoice_uid = invoice_uid
LIMIT 1
) AS invoice_date
FROM tbl_statement_items
WHERE statement_generated = '1'
AND fk_statementId = '1'
LIMIT 0 , 30

Any help would be appriciated.

Thanks

Upvotes: 0

Views: 794

Answers (1)

Nicola Cossu
Nicola Cossu

Reputation: 56357

You have inverted date_format parameters order.

Upvotes: 3

Related Questions