Skip to content
New issue

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

I can't replace certain columns #1739

Open
Gustazx opened this issue Jan 30, 2025 · 1 comment
Open

I can't replace certain columns #1739

Gustazx opened this issue Jan 30, 2025 · 1 comment

Comments

@Gustazx
Copy link

Gustazx commented Jan 30, 2025

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 ?

@Joaopaulovendramini
Copy link

I need to concatenate to solve this problem; I believe a method for this would be convenient.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants