We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support SphinxQL multiple row insertion.
SphinxQL
The INSERT syntax to achieve this task is explained by following example:
INSERT
INSERT INTO rt_index [(col_a, col_b)] VALUES (val_a1, val_b1), (val_a2, val_b2) [, (...)]
Documentation says that
Multiple rows can be inserted using a single INSERT statement by providing several comma-separated, parentheses-enclosed lists of rows values.
This behaviour is available also for REPLACE statement.
REPLACE
Reference here.
The text was updated successfully, but these errors were encountered:
zendframework/zendframework#4028
I think it's specific of some SQL dialect so it makes sense to implement this functionality in our library. I'll do that.
Sorry, something went wrong.
This is not the only way to index multiple documents at once but it is the most efficient. Reference here, 2nd part.
👍
leogr
No branches or pull requests
Support
SphinxQL
multiple row insertion.The
INSERT
syntax to achieve this task is explained by following example:Documentation says that
This behaviour is available also for
REPLACE
statement.Reference here.
The text was updated successfully, but these errors were encountered: