Bonjour

Dans une table j'ai des valeurs float entre 0,5 et 3,8
J'essaye de mettre ces valeurs dans un champ decimal(2,2)

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
  UPDATE
 tmp_CPU
 set speed=CPUX.speed
FROM     
 tmp_CPU 
INNER JOIN CPUX ON CPUX.sVal = tmp_CPU.sVal;
Mais j'ai un overflow

Arithmetic overflow error converting float to data type numeric.
Ou est l'erreur ?

Merci de votre aide