When to surround SQL fields with apostrophes?

ぃ、小莉子 提交于 2019-12-23 19:13:43

问题


I notice that when I INSERT and SELECT values to and from a database I have to surround the fields with single quotes, like so:

mysql_query("INSERT INTO employees (name, age) VALUES ('$name', '$age')");

However, if I were to update the age, I would not use single quotes:

mysql_query("UPDATE employees SET age = age + 1 WHERE name = '$name'");

Also, it seems when adding the date to a SQL database I do not have to surround it with single quotes either:

mysql_query("INSERT INTO employees (name, date) VALUES ('$name', NOW())");

Also, when using operators like CONCAT it seems not to be necessary either:

mysql_query("UPDATE employees SET name=CONCAT(name,$lastName) WHERE id='$id'");

Perhaps I am just coding poorly but I seem to recall if I did not surround a field with single quotes when inserting and selecting it the operation failed.


回答1:


You need to surround the values with quotes when field data type is of string eg text, char, varchar, etc or date types such as date, time, datetime.

For numerical types such as int, bigint, decimal, etc or SQL functions such as now(), current_date, you don't need quotes.




回答2:


"age" exists in the question as both a php variable ($age) and as a MySQL column name. Column names shouldn't be quoted (generally speaking) but the contents of a column, used in a select or insert statement, ought to be quoted.

In particular, if the contents of a php variable haven't been set, the variable itself will vanish and this can break your syntax. Surrounding php variables with single quotes will at least protect the syntax in case the variable vanishes.

SELECT * from something where age = $age;

If for some reason $age wasn't set, such as the user didn't enter it on input, it will simply vanish and this line of code will produce a syntax error at run time because it becomes "where age = ;"

SELECT * from something where age = '$age';

If for some reason $age wasn't set, it will disappear but won't generate an error because it will become "where age = '';" and is still good syntax.

SQL injection is still possible in this instance of course but that's a different question.




回答3:


You have to make a distinction between what kinds of things you see in a query:

  • reserved sql keywords: SELECT, UPDATE, WHERE, NULL, ... (not case-sensitive, but mostly used uppercase)
  • (sql) operators, and syntax tokens: + - / * . ( ) etc etc
  • sql functions: NOW(), CONCAT(), ...
  • fields, table names, database names: employees, age, name, date, ... which should be quoted using backticks, like `field`, to avoid confusion e.g. if you name a field ORDER
  • values

The last group, the values, can be string literals like 'John' or "John", or numbers like 1, 10, 1e9, 1.005. NULL is a special value, which you can loosely describe as "not set".

Numbers don't have to be enclosed in quotes, but string literals do.

This description is far from complete or perfect, but it should give you a beginning of understanding.




回答4:


String values (including single characters) must be enclosed in single quotes. This includes date constants represented using strings. Numeric values do not need quotes.



来源:https://stackoverflow.com/questions/5290147/when-to-surround-sql-fields-with-apostrophes

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!