Tag: import
Comment importer des données d’un fichier csv dans votre base Neo4J
                Pour récupérer un fichier csv : on utilise la commande suivante :
USING PERIODIC COMMIT
LOAD CSV WITH HEADERS FROM "file:absolutepathtofile" AS csvLine
FIELDTERMINATOR ';'
CREATE (object:Object {parameter: csvLine.CSVLigne1Colonne1})
 	
"USING...            
            
        




![[PowerBI][DAX] – Comment compter le nombre de ligne d’une table ?](https://i2.wp.com/mybicoach.bwabwanet.fr/wp-content/uploads/2020/01/powerbi-dax-countrows-logo-1.png?resize=100%2C70)