bonjour,
j'ai un trigger qui incremente un champ (clé primaire) avec un pas de 1 (1,2,3...).
Je voudrais rajouter devant ce numéro 'SW'. En fait je veux au lieu d'avoir 1, SW1.
Voici mon trigger et ma séquence
Comment puis-je faire?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 create sequence SEQ_APPELS_HOTLINE start with 1 increment by 1 create trigger TRG_APPELS_HOTLINE before insert on CW_TB_APPELSHO for each row begin select SEQ_APPELS_HOTLINE.nextval into :new.BV2_NDAPPEL from dual; end TRG_APPELS_HOTLINE;
Merci
Partager