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
In sequelize raw queries, if i want to do a replace in certain columns that no needs quotes, i can't disable this quotes to use in my context
Example:
const query = "SELECT * FROM users u ORDER BY :field :order" const items = await this.sequelize.query(query, { replacements: { field: "u.name", order: "ASC", } });
the query would be SELECT * FROM users u ORDER BY N'u.name' N'ASC' causing a syntax error in database
Is there a method that i can disable this ?
The text was updated successfully, but these errors were encountered:
I need to concatenate to solve this problem; I believe a method for this would be convenient.
Sorry, something went wrong.
No branches or pull requests
In sequelize raw queries, if i want to do a replace in certain columns that no needs quotes, i can't disable this quotes to use in my context
Example:
the query would be SELECT * FROM users u ORDER BY N'u.name' N'ASC'
causing a syntax error in database
Is there a method that i can disable this ?
The text was updated successfully, but these errors were encountered: