Je voudrai retourner une table comme ceci : (table defaut en haut et 2eme table comme je voudrai que se soit!!)
Si quelqu'un connait une solution en SQL et de préférence rapide d'éxecution !!
Je voudrai retourner une table comme ceci : (table defaut en haut et 2eme table comme je voudrai que se soit!!)
Si quelqu'un connait une solution en SQL et de préférence rapide d'éxecution !!
En faisant :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 SELECT * FROM ( SELECT IdentifiantHub champ1, 'PrisePort1' champ2, PrisePort1 champ3 FROM ta_table UNION SELECT IdentifiantHub champ1, 'PrisePort2' champ2, PrisePort2 champ3 FROM ta_table UNION SELECT IdentifiantHub champ1, 'PrisePort3' champ2, PrisePort3 champ3 FROM ta_table UNION SELECT IdentifiantHub champ1, 'PrisePort4' champ2, PrisePort4 champ3 FROM ta_table) ORDER BY champ1
Ma 1er table s'appel (celle ou y a l'identifiantHub) s'appel "HubsInstalles" et ma table de destination tabletempo
Je vien d'essayé ton code et se ne marche pas !!
J'ai recopier ta source
SELECT * FROM (
SELECT IdentifiantHub champ1, 'PrisePort1' champ2, PrisePort1 champ3
FROM HubsInstalles
UNION
SELECT IdentifiantHub champ1, 'PrisePort2' champ2, PrisePort2 champ3
FROM HubsInstalles
UNION
SELECT IdentifiantHub champ1, 'PrisePort3' champ2, PrisePort3 champ3
FROM HubsInstalles
UNION
SELECT IdentifiantHub champ1, 'PrisePort4' champ2, PrisePort4 champ3
FROM HubsInstalles)
ORDER BY champ1
Et il me mets erreur de syntaxe
'IdentifiantHub champ1'
esaaye avec :
Sinon que SGBD utilises-tu?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14 SELECT * FROM ( SELECT IdentifiantHub AS champ1, 'PrisePort1' AS champ2, PrisePort1 AS champ3 FROM HubsInstalles UNION SELECT IdentifiantHub AS champ1, 'PrisePort2' AS champ2, PrisePort2 AS champ3 FROM HubsInstalles UNION SELECT IdentifiantHub AS champ1, 'PrisePort3' AS champ2, PrisePort3 AS champ3 FROM HubsInstalles UNION SELECT IdentifiantHub AS champ1, 'PrisePort4' AS champ2, PrisePort4 AS champ3 FROM HubsInstalles) ORDER BY champ1
Trop cool !!!!!!!!!!!!!!
Merci bien !
T un boss !
N'en fais pas trop!!
C'est avec plaisir.
N'oublies juste pas le TAG [RESOLU]
Vous avez un bloqueur de publicités installé.
Le Club Developpez.com n'affiche que des publicités IT, discrètes et non intrusives.
Afin que nous puissions continuer à vous fournir gratuitement du contenu de qualité, merci de nous soutenir en désactivant votre bloqueur de publicités sur Developpez.com.
Partager