sql >> Databáze >  >> RDS >> Mysql

Automaticky zvýšit varchar v dotazu SQL

Zkuste toto:

<?php
// fetch the very last entry

$Barcode = 'PU000001234567';

preg_match("/(\D+)(\d+)/", $Barcode, $Matches); // Matches the PU and number

$ProductCode = $Matches[1];

$NewID = intval($Matches[2]);
$NewID++;


$BarcodeLength = 12;
$CurrentLength = strlen($NewID);
$MissingZeros = $BarcodeLength - $CurrentLength;

for ($i=0; $i<$MissingZeros; $i++) $NewID = "0" . $NewID;

$Result = $ProductCode . $NewID;

echo $Result;

// insert into database with $Result


  1. Převeďte milisekundy UTC na DATETIME na serveru SQL

  2. Jak vložit hodnotu HTML select jako text v MySQL přes PHP

  3. Velké úložiště .patch_storage

  4. Ověření e-mailu TSQL (bez regulárního výrazu)