开发者

Importance of backtick around table name in MySQL query

开发者 https://www.devze.com 2022-12-15 07:35 出处:网络
In MySQL queries, how important is it to put backticks around a table name.Does it have something to do with security?Are MySQL injection attacks possible through the table name if t开发者_如何学Gohe

In MySQL queries, how important is it to put backticks around a table name. Does it have something to do with security? Are MySQL injection attacks possible through the table name if t开发者_如何学Gohe table name is created dynamically in PHP based on user inputs?


The backticks help you from accidentally using a name that is a reserved word in SQL for example. Take a table named "where", it's a stupid name for a table I agree, but if you wrap it in backticks it will work fine.


In MySQL queries, how important is it to put backticks around a table name. Does it have something to do with security?

As far as backticks are concerned, I use them when there is name conflict between mysql-specifcs names and those from query.

Are MySQL injection attacks possible through the table name if the table name is created dynamically in PHP based on user inputs?

When ever there is a user input, you need to make sure that you filter and validate the input coming from the user. So yes there is security risk to it.

I would recommend you to use intval for numbers and mysql_real_escape_string function for any variables that you may use in your queries.


If you have a table name with the same name as a keyword, e.g. select, the following query will still work:

select * from `select`;
0

精彩评论

暂无评论...
验证码 换一张
取 消