sql >> Database teknologi >  >> RDS >> Mysql

Forøg automatisk en varchar i sql-forespørgsel

Prøv dette:

<?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. Hovedkonceptet for SQL Server-låsning

  2. I MySQL virker 'USE INDEX' ikke, men 'FORCE Index' virker fint

  3. indsæt i vælg i MySQL med JDBC

  4. Fejl:mysqladmin:opdatering mislykkedes; fejl:'Ukendt fejl'