SQL
Fermé
djibman
Messages postés
20
Date d'inscription
jeudi 17 juillet 2003
Statut
Membre
Dernière intervention
19 avril 2007
-
11 août 2003 à 13:19
TITI29 - 14 mai 2008 à 14:32
TITI29 - 14 mai 2008 à 14:32
A voir également:
- SQL
- Sql server recovery - Télécharger - Gestion de données
- Logiciel sql - Télécharger - Bases de données
- Sql pix - Forum Python
- Dupliquer une table sql ✓ - Forum Programmation
- Sql commence par ✓ - Forum Webmastering
3 réponses
sebsauvage
Messages postés
32893
Date d'inscription
mercredi 29 août 2001
Statut
Modérateur
Dernière intervention
21 octobre 2019
15 659
11 août 2003 à 13:21
11 août 2003 à 13:21
update matable set monchamp = REPLACE(monchamp,'F4/5','F5')
Mais c'est du TSQL (Microsoft SQL Server).
Ton serveur SQL a sûrement une instruction différente.
Bonjour,
comment faire pour remplacer un double point ":" par un underscore "_" dans une seule colonne d'une table ?
Merci
comment faire pour remplacer un double point ":" par un underscore "_" dans une seule colonne d'une table ?
Merci
11 août 2003 à 13:23
Merci
11 août 2003 à 13:30
11 août 2003 à 13:51
select *, translate(code_sachet, 'F4/5','F55') from semis where code_sachet like '22RV221%';
Le probleme est qu'il me crée une autre colonne avec pour nom translate et ne me remplace ds la column en question.
SoS
11 août 2003 à 13:58
http://www.postgresql.org/docs/7.3/static/functions-string.html
"replace(string text, from text, to text)
Replace all occurrences in string of substring from with substring to"