Tagged Questions
The user-variables tag has no wiki summary.
1
vote
1answer
44 views
Odd behavior of user-defined variables in MySQL
I've noticed something odd about user-defined variables:
Lets say I have this table:
num_table
+---------+
| numbers |
| 3 |
| 6 |
| 9 |
+---------+
I can create a ...
1
vote
3answers
333 views
Perform UPDATE and setting a user variable in one single query
Everyone familiar with php's mysql_query command, knows that it doesn't allow us to perform more than one query (separated by the ; delimiter) in one call...
My problem is that I wan't to be able to ...
1
vote
1answer
1k views
mysql update statement behaves differently based on whether a user variable exists
I'm reseting a sort column that has duplicate or missing values like so:
set @last='';
set @sort=NULL;
update conf_profile set sort=
if(
...
0
votes
2answers
28 views
user variables in mysql update statement
Let t be a mysql table and n be an integer column in it. I would be interested if the following query can be modified so that the expression n - 10 is calculated only once.
UPDATE t SET n = if(n - 10 ...
0
votes
1answer
45 views
Multiple mysql statements on same connection
I'm building a search query and was wondering if the code below would be valid. Basically I would set the @keywords variable in the first statement and then use it in the 2nd statement. It seems to be ...
0
votes
1answer
50 views
SSIS Updating User Variables from a CSV file
I am fairly new to SSIS and I have been looking everywhere for the answer to this question and can't find it, which makes me think its really simple and obvious, because I'm pretty sure this is a ...
0
votes
1answer
254 views
How do I assign numeric value of an SQL query result to a package variable of data type Double?
I have what should be a simple task - Populate a user variable using the ResultSet from an Execute SQL task
SELECT MainID FROM TableA WHERE TableA_ID = 1
(This will only return one Column and one ...
0
votes
2answers
74 views
having trouble with getting rows back from msqli::multi_query
I've got an sql query that contains a number of statements. It:
sets a user variable
calls a stored procedure
calls another stored procedure
selects some data
I know that the query is correct, ...
0
votes
1answer
669 views
MySQL select from view with user variables - Unexpected result
I have 2 tables and a view. In product_oper I have some products that I receive (when id_dest is 1) and that I sell (when id_src is 1). The table product_doc contains the date when the operation took ...