Je voulais savoir si il existait show tables en sqlite ou un équivalent.
Merci à vous !!
Je voulais savoir si il existait show tables en sqlite ou un équivalent.
Merci à vous !!
Bonjour,
oui, il y a des équivalences.
1) La commande ".table " :
2) La table interne SQLite_master :.tables ?PATTERN? List names of tables matching a LIKE pattern
a+
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 select * from SQLite_master; ou select * from sqlite_master where name='nom_de_ma_table';
Partager