Tagged Questions

4
votes
3answers
550 views

MySQL stored procedure vs function, which would I use when?

I'm looking at MySQL stored procedures and function. What is the real difference? They seem to be similar, but a function has more limitations. I'm likely wrong, but it seems a stored procedure can ...
4
votes
1answer
273 views

MySQL function to compare values in a db table against the previous

Iam quite new to functions in SQL and I would like to create a function to compare values in a MySQL table against previous and I am not sure how to do this. For example (iId is the input value) ...
2
votes
1answer
81 views

How to order by max(a,b) in SQL?

Consider the following table: id a b -------------- 1 5 1 2 2 3 3 4 2 4 3 6 5 0 1 6 2 2 I would like to order it by max(a,b) in descending ...
2
votes
1answer
518 views

MySql Regular Expression Select Columns Matching (dynamic)multiple Values within Stored Procedure

I am trying to generate a query where I want to select columns(text) matching multiple values. eg: I have two columns, id and description. suppose my first row contains description column with value ...
2
votes
5answers
150 views

Help with MySQL query

I have a table that contains the next columns: ip(varchar 255), index(bigint 20), time(timestamp) each time something is inserted there, the time column gets current timestamp. I want to run a ...
1
vote
2answers
379 views

adding one month to current date?

in java how to add one month to the current date .
1
vote
1answer
2k views

Selecting multiple fields into multiple variables in a MySQL stored procedure

I am a little new to store procedures in MySQL and was wondering if I can SELECT multiple columns into multiple variables within the same select query. for example (iName is the input to the ...
0
votes
1answer
25 views

Scopes in MySQL & Derived tables

Let's say I have 2 Tables One named Baskets, Another named Fruits. Baskets- basket_id , basket_name 1 - Basket One 2 - Basket Two Fruits- fruit_id , basket_id , fruit_name 1 - ...
0
votes
4answers
563 views

Can I run an HTTP GET directly in SQL under MySQL?

I'd love to do this: UPDATE table SET blobCol = HTTPGET(urlCol) WHERE whatever LIMIT n; Is there code available to do this? I known this should be possible as the MySQL Docs include an example of ...