Tagged Questions

2
votes
1answer
50 views

Mysql not giving Syntax error when it should

I am trying with following query SELECT COUNT(*) FROM users` WHERE email = 'xyz@xyz.com' This is not giving me syntax error (notice not include ` character at the starting of table name). And ...
1
vote
2answers
76 views

Bash and MySQL variables problem

I have the following script: #!/bin/sh Q=`</dev/urandom tr -dc A-Za-z0-9 | head -c30` mysql -uusername -ppasword accounts -e "update forum set key='$Q' where id='1';" I have to add ...
1
vote
1answer
720 views

What are the differences between backtick and single quote? Can I use IF statement in a query as above?

In the codeigniter manual writes the following. $this->db->select() accepts an optional second parameter. If you set it to FALSE, CodeIgniter will not try to protect your field or table ...
1
vote
1answer
1k views

MySQL : When stored procedure parameter name is the same as table column name [continue]

Let's say a have a stored procedure SetCustomerName which has an input parameter Name, and I have a table customers with column Name. So inside my stored procedure I want to set customer's name. If I ...
0
votes
1answer
26 views

Rename a MySQL column containing ` in the column name

So, the other guy at work created a table with a column called: Max(`abs_spg_20090430`.`ID`) this is giving me an error now that I am trying to run a dump of the database on a different server. ...
0
votes
2answers
145 views

MySQL grouping by a previously declared alias, what do I wrap it in? ' OR `

I have an SQL query that has an alias in the SELECT statement SELECT CONCAT(YEAR(r.Date),_utf8'-',_utf8'Q',QUARTER(r.Date)) AS 'QuarterYear' Later, I want to refer to this in my group by ...