Tagged Questions
1
vote
2answers
2k views
single quotes and double quotes in mysql insert and update query (java)
The ComName is 'a'b'c'"def"j Limited.
i try to add \ before every ' and " but the resultant query that is executed is
"UPDATE empTable SET empId= '25', ComName = 'a'b'c'"def"j Limited where ID=1"
...
0
votes
2answers
21 views
strange quotation mark behavior
I'm learning SQL using Wampserver, Crimson editor, and the New Boston tutorials. Nothing worked until I change quotation marks:
With SQL commands, regular 'single quotes' don't work, but weird slanty ...
0
votes
1answer
52 views
How to use a pair of single-quotes inside double qoutes in bash?
I am going to write a bash script to manipulate user's data on mysql DB.
Here is the problem. I need to pass a variable's value into a Mysql query string:
read USERNAME;
echo "USE drupdb; SELECT ...
0
votes
1answer
36 views
how to add properties with quote to a MySQL request design to output a CSV
I am trying to output an SQL request into a CSV file but I can't add two options that will help me to set it up. Here is the part of the request that works well:
mysql --host=localhost --user=root ...