![]() |
Sergey Kornilov admin 1/11/2013 |
They add wrappers to field or table names. select `some field` from `some table`
select [some field] from [some table] |
J
|
jackheitzer@gmail.com author 1/12/2013 |
They add wrappers to field or table names. For example to use a field with space in its name in SQL query you need to wrap it. In MySQL: select `some field` from `some table`
select [some field] from [some table]
|