Aprire il client di database . Ad esempio, per aprire MySQL , digitare nel vostro terminale :
mysql
2
Digitare quanto segue per creare un semplice tavolo pieno di valori BIGINT :
CREATE TABLE testt ( BIGINT anInt ) ;
INSERT INTO testt ( anInt ) valori ( 123432 ) ;
INSERT INTO valori testt ( anInt ) ( 432.432.432 ) ;
INSERT INTO testt ( anInt ) valori ( 5344432423 ) ;
INSERT INTO valori testt ( anInt ) ( 432432432443243243243243232432 ) ;
3
creare la funzione che eseguirà la conversione : < br
Crea> fUNZIONE BigToInt (n BIGINT ) RETURNS iNTERO RITORNO n;
come si può vedere , la funzione è molto breve e semplice : Ci vuole un BIGINT e restituisce immediatamente come un intero comune. Tuttavia, una conseguenza di questo è che alcuni dei dati verrà troncato verso il massimo valore possibile per Int. .
software © www.354353.com