csv-analyzing

A guide for analyzing CSV files.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "csv-analyzing" with this command: npx skills add totto2727-dotfiles/agents/totto2727-dotfiles-agents-csv-analyzing

CSV Analysis

A guide for analyzing CSV files.

Load All Data

SELECT * FROM 'data.csv';

Select Specific Columns

SELECT column1, column2, column3 FROM 'data.csv';

Filter Rows

Retrieve only rows matching a specific condition:

SELECT * FROM 'data.csv' WHERE column1 = 'value';

Filter with multiple conditions:

SELECT * FROM 'data.csv' WHERE column1 = 'value' AND column2 > 100;

Combined Column and Row Filtering

SELECT column1, column2 FROM 'data.csv' WHERE column1 LIKE '%keyword%' AND column3 IS NOT NULL;

Filter by Row Number

Retrieve a specific range of rows (e.g., rows 11-20):

SELECT * FROM ( SELECT *, row_number() OVER () AS rn FROM 'data.csv' ) WHERE rn BETWEEN 11 AND 20;

Skip the first N rows:

SELECT * FROM ( SELECT *, row_number() OVER () AS rn FROM 'data.csv' ) WHERE rn > 100;

Additional SQL Features

Refer to the official documentation only when you need other features.

Reference Documentation:

  • SQL Introduction

  • CSV Import

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

git-operations-rules

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

git-commit

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

file-deletion-rules

No summary provided by upstream source.

Repository SourceNeeds Review