reqêute SQL??

reqêute SQL?? - SQL/NoSQL - Programmation

Marsh Posté le 23-11-2004 à 14:47:25    

Bonjour,
 
je cherche une requete SQL pour l'extraction de trois champs dans un seul cad la colonne résultante doit être  sous la forme col1 x col2 x col3
merci.

Reply

Marsh Posté le 23-11-2004 à 14:47:25   

Reply

Marsh Posté le 23-11-2004 à 16:00:27    

Multiplication ? Concaténation ?
 
Avec Oracle tu peux faire :
 
SELECT col1 * col2 * col3
FROM matable;
(multiplication)
 
SELECT col1 || col2 || col3
FROM matable;
(concaténation)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed