Bonjour , j'aimerais pouvoir créer dans Access97 une table temporaire qui
possède un champ de type identity :
Mais cela ne fonctionne pas ni TEMPORARY , ni IdentityCode:
1
2 CREATE TEMPORARY TABLE Bidon ([N°] Identity, [BD] text(20) not null, [Table] text(20) not null)
J'ai bien essayé
ouCode:
1
2 CREATE TABLE ##Bidon ([N°] Identity, [BD] text(20) not null, [Table] text(20) not null)
Mais sans succès !Code:
1
2 CREATE TABLE #Bidon ([N°] Identity, [BD] text(20) not null, [Table] text(20) not null)
A l'aide !
Merci d'avance