Skip to content

Instantly share code, notes, and snippets.

@dodyagung
Last active August 29, 2015 14:04
Show Gist options
  • Save dodyagung/e161a4a922592aedc213 to your computer and use it in GitHub Desktop.
Save dodyagung/e161a4a922592aedc213 to your computer and use it in GitHub Desktop.
MYSQL AUTO LEADING ID
/* TRX1409240002 */
SELECT
CONCAT(
'TRX',
DATE_FORMAT(CURDATE(), '%y%m%d'),
IF(
SUBSTR(MAX(id),8,2) = DATE_FORMAT(CURDATE(), '%d'),
LPAD(
SUBSTR(MAX(id),10,4) + 1,
4,
0
),
'0001'
)
) AS id
FROM
t_penjualan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment