# scyllax-parser (sɪl-æks)
A parser for CQL queries.
[](https://discord.gg/FahQSBMMGg)
[](https://codecov.io/gh/trufflehq/scyllax)
[](https://github.com/trufflehq/scyllax/actions/workflows/ci.yml)
## Usage
```rust
use scyllax_parser::{Column, Query, SelectQuery};
let query = Query::try_from("select id, name from person");
assert_eq!(
query,
Ok(Query::Select(SelectQuery {
table: "person".to_string(),
columns: vec![
Column::Identifier("id".to_string()),
Column::Identifier("name".to_string()),
],
condition: vec![],
limit: None,
}))
);
```