jasny / jasny/persist-sql-query
Query modifiers like INSERT IGNORE and SELECT DISTINCTROW
Open
- Dominant language
- PHP
- Stars
- 33
- Forks
- 8
- PR merge metrics
- No merged PRs in 30d
Description
```
$query = Query::build('mysql')->insert()->mod('IGNORE')->into($table)->set($values);
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start at the Query::build('mysql') entry point and trace how insert() and set($values) assemble the query. Determine how the IGNORE modifier and SELECT DISTINCTROW should be represented, then verify that both examples produce the intended MySQL queries.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- mysql, php
- Domain
- databases
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 42/100