Tagged Questions
The mysql-5.1 tag has no wiki summary.
2
votes
2answers
63 views
In MySQL (5.1) what is best way to detect one set of columns is not equal to another
I have two tables a source and a destination. I want to flag the destination table to be updated if any of the corresponding columns in source columns are different. The columns can be null.
...
1
vote
3answers
57 views
Which row (in order by some column) in a table corresponds to a row in another table?
I have two tables, as follows (simplified from actual):
mysql> desc small_table;
+-----------------+---------------+------+-----+---------+-------+
| Field | Type | Null | Key | ...
1
vote
1answer
60 views
How can I cast an int to a bit in MySQL 5.1?
I am transitioning from SQL Server to MySQL 5.1 and seem to be tripped up trying to create a table using a select statement so that the column is a bit.
Ideally the following would work:
CREATE ...
0
votes
3answers
23 views
How to get values of several fields in a SELECT inside a STORED PROCEDURE
I am trying to populate my vars the following way.
Obviously, I am doing something wrong.
...
BEGIN
DECLARE p_f1,p_f2 INT;
SELECT
f1 INTO p_f1,
f2 INTO p_f2
FROM
...
0
votes
1answer
11 views
how to use a block of commands in triggers
The following code works
CREATE
TRIGGER rebuild_course_auto_enrollment_tree_mv AFTER INSERT
ON course_auto_enrollment FOR EACH ROW
DELETE FROM
cron_event_tasks;
If I add the BEGIN ... END as ...
0
votes
1answer
29 views
how to create trigger on any change in table
I have a mysql table which on any change (i.e. insert, update and delete) I need to run the relevant trigger code.
Do I need to create three different triggers or is there a syntax for just one.
Using ...
0
votes
1answer
21 views
regexp for mysql 5.1 (look up entry based on user input)
How do I write a regular expression which checks for entries that contain within them, a specific character pattern input by the user. For instance,
User input: at
Desired return: ...
0
votes
1answer
153 views
Procedure Parameter problem? Mysql 5.1 SQL Error 1064
Works in Mysql 5.5 windows, doesn't work in mysql 5.1, ubuntu lucid
DELIMITER $$
CREATE PROCEDURE `queueup`( IN groupsize INT, OUT done INT)
BEGIN
DECLARE room INT;
SET room = -1;
...
0
votes
1answer
154 views
MySQL 5.1 exit code documentation?
Can someone point me at the docs for the termination codes for MySQL 5.1?
I have a MySQL 5.1.41 installation on an Ubuntu server that seems to be crashing about every 90 seconds with the following ...
0
votes
3answers
234 views
MySQL 5.1 database export fails while importing into MySQL 5.1
I am having a particularly weird problem putting the data into my production server. My test server runs MySQL 5.1.41. I export the database (tried both via mysqldump and PHPMyAdmin) and then try to ...
0
votes
1answer
68 views
GROUP BY date with no leaks SQL on MySQL 5.1 [closed]
Possible Duplicate:
What is the most straightforward way to pad empty dates in sql results (on either mysql or perl end)?
Create Table:
CREATE TABLE `trb3` (
`value` varchar(50) default ...
0
votes
2answers
88 views
How do I change the mysql server date using SQL
I need to change the server date via sql.
Preferably through my application (CL is also good).
How do I change the mysql server date using SQL?
Why:
We test a scenario that spans several weeks. To ...
-1
votes
1answer
31 views
Is it possible to do sql injection with stored procedures?
I saw some similar question, none about mysql...
Is there any way to do a sql injection into a SP?
How do I protect from this on the SP level?
In other words, can the Query strucutre, inside a SP can ...