-
**Describe the bug**
MySQL and Postgres have this field.
**Screenshots**
Missing raw SQL field.
![image](https://github.com/user-attachments/assets/fa98ab0b-7c85-4d16-8750-b5fdc0e1df…
-
Apply this diff
```diff
diff --git i/examples/postgres/migrations/m0005_reference_complex.rs w/examples/postgres/migrations/m0005_reference_complex.rs
index 7ed796a..72264a4 100644
--- i/example…
-
-
### Bug Description
`sqlx::raw_sql` query doesn't work with `async-trait` crate raise error
```
implementation of `sqlx::Executor` is not general enough
`sqlx::Executor` is actually implemented fo…
-
Given:
```go
query := sq.Select("something FROM somewhere").Where("id NOT IN ?", []int{1, 2, 3})
```
Expected:
```sql
SELECT something FROM somewhere WHERE id NOT IN (1, 2, 3);
```
Actual:…
-
- Account.account_list
- Security.security_list
The difficulty is that both of these uses nested, correlated subqueries; which are difficult to implement in ActiveRecord
-
It was mentioned here https://github.com/AKST/Australian-Address-Boundaries-Land-Property-Price-Database/issues/56#issuecomment-2499350272
I think it's worth considering if sourced tables in `sql/n…
AKST updated
19 hours ago
-
### Bug Description
Hello,
I am setting up an axum web server with a simple route handler. The handler acquires a connection from the connection pool, and then runs some arbitrary statement. Origi…
-
### Is your feature request related to a problem?
I am trying to use the SQL expression for multiple CTE but the `Table.sql` only allows for a single table.
### What is the motivation behind you…
-
I am using Spring Data R2DBC with a PostgreSQL database. My goal was to use `CriteriaDefinition` to describe a query for a column of type `text[]` in PostgreSQL. Specifically, I wanted to perform …