MySQL is an open-source, relational database management system.
1455
votes
24answers
199k views
How to prevent SQL injection in PHP?
If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example:
$unsafe_variable = $_POST['user_input'];
mysql_query("INSERT ...
212
votes
7answers
10k views
Why shouldn't I use mysql_* functions in PHP?
What are the technical reasons that I shouldn't use mysql_* functions? (like mysql_query(), mysql_connect() or mysql_real_escape_string())?
Why should I move away from them as long as it works on my ...
58
votes
14answers
80k views
mysql_fetch_array() expects parameter 1 to be resource, boolean given in select
I am trying to select data from a table but get this error message:
mysql_fetch_array() expects parameter 1 to be resource, boolean given..
This is my code:
$username = $_POST['username'];
...
86
votes
10answers
44k views
Simulating group_concat MySQL function in Microsoft SQL Server 2005?
I'm trying to migrate a MySQL-based app over to Microsoft SQL Server 2005 (not by choice, but that's life).
In the original app, we used almost entirely ANSI-SQL compliant statements, with one ...
114
votes
11answers
12k views
UTF-8 all the way through
I'm setting up a new server, and want to support UTF-8 fully in my web application. I have tried in the past on existing servers and always seem to end up having to fall back to ISO-8859-1.
Where ...
318
votes
17answers
46k views
mysqli or PDO - what are the pros and cons? [closed]
In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
5
votes
0answers
384 views
Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error [duplicate]
Possible Duplicate:
How to fix this error “mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in”?
This is a canonical answer intended address this very ...
3
votes
3answers
1k views
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result [closed]
I get the error when trying to run this:
<?php
require_once('includes/DbConnector.php');
$connector = new DbConnector();
$result = $connector->query('SELECT title,content FROM staff_vacancies ...
46
votes
8answers
5k views
Is storing a delimited list in a database column really that bad?
Imagine a web form with a set of checkboxes (any or all can be selected). I chose to save them in a comma separated list of values stored in one column of the database table.
Now, I know that the ...
43
votes
5answers
1k views
Reference: What is a perfect code sample using the MySQL extension? [closed]
This is to create a community learning resource. The goal is to have examples of good code that do not repeat the awful mistakes that can so often be found in copy/pasted PHP code. I have requested ...
22
votes
13answers
2k views
How to filter SQL results in a has-many-through relation
Assuming I have the tables student, club, and student_club:
student {
id
name
}
club {
id
name
}
student_club {
student_id
club_id
}
I want to know how to find all students ...
107
votes
6answers
81k views
How to do a regular expression replace in MySQL?
I have a table with ~500k rows; varchar(255) UTF8 column filename contains a file name;
I'm trying to strip out various strange characters out of the filename - thought I'd use a character class: ...
130
votes
10answers
79k views
INNER JOIN ON vs WHERE clause
For simplicity, assume all relevant fields are NOT NULL.
You can do:
SELECT
table1.this, table2.that, table2.somethingelse
FROM
table1, table2
WHERE
table1.foreignkey = table2.primarykey
...
107
votes
9answers
60k views
Retrieving the last record in each group
There is a table messages that contains data as shown below:
Id Name Other_Columns
-------------------------
1 A A_data_1
2 A A_data_2
3 A A_data_3
4 B ...
17
votes
5answers
5k views
MySQL and NoSQL: Help me to choose the right one
There is a big database, 1,000,000,000 rows, called threads (these threads actually exist, I'm not making things harder just because of I enjoy it). Threads has only a few stuff in it, to make things ...
35
votes
8answers
50k views
ROW_NUMBER() in MySQL
Is there a nice way in MySQL to replicate the MS SQL Server function ROW_NUMBER()?
For example:
SELECT
col1, col2,
ROW_NUMBER() OVER (PARTITION BY col1, col2 ORDER BY col3 DESC) AS intRow
...
71
votes
6answers
33k views
MySQL Great Circle Distance (Haversine formula)
I've got a working PHP script that gets Longitude and Latitude values...then inputs them into a MySQL query. I'd like to make it solely MySQL.
Here's my current PHP Code:
if ($distance != "Any" ...
164
votes
7answers
148k views
“INSERT IGNORE” vs “INSERT … ON DUPLICATE KEY UPDATE”
While executing an INSERT statement with many rows, I want to skip duplicate entries that would otherwise cause failure. After some research, my options appear to be the use of either:
"ON ...
51
votes
5answers
15k views
SQL injection that gets around mysql_real_escape_string()
Is there an SQL injection possibility even when using mysql_real_escape_string() function?
Consider this sample situation. SQL is constructed in PHP like this:
$login = ...
88
votes
4answers
64k views
PHP + MySQL transactions examples
I really haven't found normal example of PHP file where MySQL transactions are being used. Can you show me simple example of that?
And one more question. I've already done a lot of programming and ...
115
votes
10answers
74k views
Mysql error 1093 - Can't specify target table for update in FROM clause
I have a table story_category in my database with corrupt entries. The next query returns the corrupt entries:
SELECT * FROM story_category WHERE category_id NOT IN (
SELECT DISTINCT category.id ...
3
votes
6answers
3k views
“Warning: Cannot modify header information - headers already sent by” error [duplicate]
Possible Duplicate:
Headers already sent by PHP
i keep receiving this error each time i try to submit the a form deletion form.
Warning: Cannot modify header
information - headers ...
258
votes
16answers
81k views
MyISAM versus InnoDB
I'm working on a projects which involves a lot of database writes, I'd say (70% inserts and 30% reads). This ratio would also include updates which I consider to be one read and one write. The reads ...
157
votes
10answers
76k views
Using MySQL with Entity Framework
Can't find anything relevant about Entity Framework/MySQL on Google so I'm hoping someone knows about it.
8
votes
6answers
4k views
When to use single quotes, double quotes, and backticks?
I've been reading answers to similar questions on here for about 20 minutes, but it seems like there is no definitive answer to this question.
I am a newbie PHP programmer and am trying to learn the ...
152
votes
9answers
106k views
How to 'insert if not exists' in MySQL?
I started by googling, and found this article which talks about mutex tables.
I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the ...
68
votes
2answers
21k views
How do I update if exists, insert if not (aka upsert or merge) in MySQL?
Is there an easy way to INSERT an row when not exists, or to UPDATE if it exists, using one MySQL query?
28
votes
5answers
26k views
31
votes
4answers
33k views
MySql Row Number?
Is there any way I can get the actual row number from a query?
I want to be able to order a table called league_girl by a field called score; and return the username and the actual row position of ...
32
votes
8answers
25k views
mysql: Using LIMIT within GROUP BY to get N results per group?
The following query:
SELECT
year, id, rate
FROM h
WHERE year BETWEEN 2000 AND 2009
AND id IN (SELECT rid FROM table2)
GROUP BY id, year
ORDER BY id, rate DESC
yields:
year id rate
2006 p01 ...
110
votes
16answers
48k views
Library not loaded: libmysqlclient.16.dylib error when trying to run 'rails server' on OS X 10.6 with mysql2 gem
I've been struggling with this for some time.
I've installed Rails 3, gem, mysql on my Snow Leopard machine. All was going well until I created my first project and tried to run
rails server
Upon ...
18
votes
1answer
18k views
MySQL pivot table
If I have a MySQL table looking something like this:
company_name action pagecount
-------------------------------
Company A PRINT 3
Company A PRINT 2
Company A PRINT 3
Company B ...
11
votes
3answers
7k views
MySQL: Alternatives to ORDER BY RAND()
I've read about a few alternatives to MySQL's ORDER BY RAND() function, but most of the alternatives apply only to where on a single random result is needed.
Does anyone have any idea how to ...
137
votes
8answers
67k views
How to get UTF-8 working in java webapps?
I need to get UTF-8 working in my Java webapp (servlets + JSP, no framework used) to support äöå etc. for regular Finnish text and Cyrillic alphabets like ЦжФ for special cases.
My setup is the ...
73
votes
5answers
5k views
How can an SQL query return data from multiple tables [closed]
I would like to know the following:
how to get data from multiple tables in my database?
what types of methods are there to do this?
what are joins and unions and how are they different from one ...
58
votes
7answers
30k views
Fastest Way to Find Distance Between Two Lat/Long Points
I currently have just under a million locations in a mysql database all with longitude and latitude information.
I am trying to find the distance between one point and many other points via a query. ...
91
votes
9answers
44k views
Join vs. subquery
I am an old-school MySQL user and have always preferred JOIN over sub-query. But nowadays everyone uses sub-query and I hate it, don't know why.
I lack of theoretical knowledge to judge for myself ...
37
votes
6answers
23k views
How can i optimize MySQL's ORDER BY RAND() function?
I'd like to optimize my queries so i look into mysql-slow.log.
Most of my slow queries contains ORDER BY RAND(). I cannot find a real solution to resolve this problem. Theres is a possible solution ...
18
votes
4answers
1k views
Why would an IN condition be slower than “=” in sql?
Check the question This SELECT query takes 180 seconds to finish (check the comments on the question itself).
The IN get to be compared against only one value, but still the time difference is ...
629
votes
18answers
120k views
datetime vs timestamp?
What would you recommend using between a datetime and a timestamp field, and why? (using mysql). I'm working with php on the server side.
23
votes
19answers
10k views
quick selection of a random row from a large table in mysql
What is a fast way to select a random row from a large mysql table?
I'm working in php, but I'm interested in any solution even if it's in another language.
23
votes
4answers
16k views
Mysql rank function
I am not an expert in mysql.I need to find out rank of customers.Here I am adding the corresponding sql query for my requirement.Please help me to convert it to mysql.
SELECT RANK() OVER (PARTITION ...
23
votes
13answers
18k views
Natural Sort in MySQL
Is there an elegant way to have performant, natural sorting in a MySQL database?
For example if I have this data set:
Final Fantasy
Final Fantasy 4
Final Fantasy 10
Final Fantasy 12
Final Fantasy ...
5
votes
1answer
862 views
The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
When I attempt to connect to a MySQL server from PHP, I see the following error:
Deprecated: The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in ...
35
votes
6answers
69k views
insert multiple rows via a php array into mysql
I'm passing a large dataset into a mysql table via php using insert commands and I'm wondering if its possible to insert approximately 1000 rows at a time via a query other than appending each value ...
87
votes
12answers
87k views
JSON encode MySQL results
How do I use the JSON_encode function with mysql query results, do I need to iterate through the rows or can I just apply it to the entire results object?
34
votes
14answers
56k views
Get a list of dates between two dates
Using standard mysql functions is there a way to write a query that will return a list of days between two dates.
eg given 2009-01-01 and 2009-01-13 it would return a one column table with the ...
59
votes
8answers
20k views
Using backticks around field names
After reading a couple of answers and comments on some SQL questions here, and also hearing that a friend of mine works at a place which has a policy which bans them, I'm wondering if there's anything ...
19
votes
6answers
35k views
Can Mysql Split a column?
I have a column that has comma separated data:
1,2,3
3,2,1
4,5,6
5,5,5
I'm trying to run a search that would query each value of the CSV string individually.
0<first<5 and ...
154
votes
7answers
49k views
Comparison of full text search engine - Lucene, Sphinx, Postgresql, MySQL?
I'm building a Django site and I am looking for a search engine.
A few candidates:
Lucene/Lucene with Compass/Solr
Sphinx
Postgresql built-in full text search
MySQl built-in full text search
...


