sql >> Databasteknik >  >> RDS >> Mysql

Öka automatiskt en varchar i sql-fråga

Prova detta:

<?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. Python - SQL Connector:Uppdatering fungerar inte

  2. Varför är PHPs mysql_-funktioner utfasade?

  3. Ge en användare behörighet att endast se en MySQL-vy och inget annat

  4. Hur infogar/skapar man lagrade procedurer i mySQL från PHP?