MySQL is an open-source, relational database management system.
341
votes
18answers
49k views
Best way to stop SQL Injection in PHP
So specifically in a mysql database. Take the following code and tell me what to do.
// connect to the mysql database
$unsafe_variable = $_POST["user-input"];
mysql_query("INSERT INTO table ...
270
votes
21answers
10k views
How should I ethically approach user password storage for later plaintext retrieval?
As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
229
votes
16answers
41k 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.
161
votes
16answers
59k views
SQLite vs MySQL
SQLite is a single-file based database and MySQL is a normal database. That's great, but I'm not sure which is faster where or better for what...what are the pros and cons of each option?
138
votes
15answers
25k views
mysqli or PDO - what are the pros and cons?
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 ...
118
votes
11answers
3k views
First-time database design: am I overengineering?
Background
I'm a first year CS student and I work part time for my dad's small business. I don't have any experience in real world application development. I have written scripts in Python, some ...
116
votes
6answers
29k views
When to use MongoDB or other document oriented database systems?
We offer a platform for video- and audio-clips, photos and vector-grafics. We started with MySQL as the database backend and recently included MongoDB for storing all meta-information of the files, ...
116
votes
22answers
117k views
How do I quickly rename a mysql database (change schema name)?
Usually I just dump the database and reimport it with a new name. This is not an option for very big databases. Apparently RENAME {DATABASE | SCHEMA} db_name TO new_db_name; does bad things, exist ...
110
votes
15answers
33k 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 ...
104
votes
24answers
4k views
What resources exist for Database performance-tuning?
What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?
The idea of this question is to collect the shed load of resources that ...
102
votes
17answers
9k views
Would you recommend PostgreSQL over MySQL?
We are currently working with JavaEE and MySQL 5 in our company, but we have some queries, especially delete queries that take > 10 min to execute. We consider to switch to PostgreSQL.
What are the ...
95
votes
20answers
10k views
Hidden Features of MySQL
I've been working with Microsoft SQL Server with many years now but have only just recently started to use MySQL with my web applications, and I'm hungry for knowledge.
To continue with the long line ...
88
votes
17answers
107k views
How do you set a default value for a MySQL Datetime column?
How do you set a default value for a MySQL Datetime column?
In SQL Server it's getdate(), what is the equivalant for MySQL? I'm using 5.x if that is a factor.
87
votes
20answers
39k views
Compare two MySQL databases
I have a database in MySQL that I am currently developing. I have a copy of this database on my development machine which I modify as fast as I develop and a copy on a test server. My question is:
Is ...
87
votes
14answers
5k views
How do you manage databases in development, test, and production?
I've had a hard time trying to find good examples of how to manage database schemas and data between development, test, and production servers.
Here's our setup. Each developer has a virtual machine ...
86
votes
6answers
25k 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
...
80
votes
28answers
44k views
What is the best MySQL Client Application for Windows
Are there any MySQL Client applications for Windows that get even close to what the Enterprise Manager / Server Management Studio is for Microsoft SQL?
I have two requirements and one "nice to have" ...
79
votes
10answers
3k views
“where 1=1” statement [closed]
Possible Duplicate:
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause?
I saw some people use a statement to query a table in a MySQL database like the following:
...
78
votes
10answers
40k 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.
75
votes
15answers
17k views
Subqueries vs joins
I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like
where id in (select id from ... )
The refactored query runs about ...
74
votes
8answers
63k views
Mysql Error 1153 - Got a packet bigger than 'max_allowed_packet' bytes
I'm importing a mysql dump and getting the following error:
$ mysql foo < foo.sql
ERROR 1153 (08S01) at line 96: Got a packet bigger than 'max_allowed_packet' bytes
The dump is a mysqldump of a ...
73
votes
9answers
39k 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 ...
72
votes
17answers
6k views
Why isn't PostgreSQL as widespread as MySQL?
I'm currently developing a pretty big project, and I'm considering open source databases to use.
One of the main factors I consider is support, and it seems like there is not much support/community ...
71
votes
5answers
45k views
MySQL Query GROUP BY day / month / year
Is it possible I make a simple query to count how many records I have in a determined period of time like a Year, month or day, having a TIMESTAMP field, like:
SELECT COUNT(id)
FROM stats
WHERE ...
69
votes
14answers
5k views
How does Facebook achieve good performance?
Almost everyone has a Facebook account, even people who are not familiar with the Internet.
With millions people actively using Facebook, updating their status, replying to messages, uploading photos ...
67
votes
12answers
101k views
Easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard) or 10.7 (Lion)?
What is the easiest way to activate PHP and MySQL on Mac OS 10.6 (Snow Leopard)?
I'd prefer to use any bundled versions before resorting to downloading from the PHP or MySQL websites.
I'm ...
65
votes
6answers
46k views
Can I concatenate multiple MySQL rows into one field?
Using MySQL, I can do something like
select hobbies from peoples_hobbies where person_id = 5;
and get:
shopping
fishing
coding
but instead I just want 1 row, 1 col:
shopping, fishing, coding
...
63
votes
6answers
37k views
What is the best collation to use for MySQL (with PHP)
I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as ...
63
votes
21answers
3k views
When do you know it's time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was ...
62
votes
7answers
66k 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 ...
62
votes
7answers
45k views
Which MySQL Datatype to use for storing boolean values?
Since MySQL doesn't seem to have any 'boolean' datatype, which datatype do you 'abuse' for storing true/false information in MySQL? Especially in the context of writing and reading from/to a ...
62
votes
20answers
10k views
Mechanisms for tracking DB schema changes
What are the best methods for tracking and/or automating DB schema changes? Our team uses Subversion for version control and we've been able to automate some of our tasks this way (pushing builds up ...
61
votes
22answers
58k views
Rails, MySQL and Snow Leopard
I upgraded to Snow Leopard using the disc we got at WWDC.
Trying to run some of my rails apps now complains about sql
(in /Users/coneybeare/Projects/Ambiance/ambiance-server)
!!! The bundled ...
57
votes
17answers
12k views
Good tool to visualise database schema?
Are there any good tools for visualising a pre-existing database schema? I'm using MySQL if it matters.
I'm currently using MySQL Workbench to process an SQL create script dump, but it's clunky, slow ...
56
votes
9answers
6k 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 ...
55
votes
13answers
16k views
MySQL Diff Tool
Does anyone know any visual MySQL diff tools?
I have about 10 machines all with their own instance of MySQL. No replication is taking place, since each machine acts independently of the others. ...
54
votes
14answers
3k views
Should I COUNT(*) or not?
I know it's generally a bad idea to do queries like this:
SELECT * FROM `group_relations`
But when I just want the count, should I go for this query since that allows the table to change but still ...
53
votes
12answers
28k views
What is the ideal data type for latitude / longitude?
I'll be performing calculations on lat / long pairs,
what datatype is best suited in MySQL database?
51
votes
6answers
14k views
Choosing a stand-alone full-text search server: Sphinx or SOLR?
I'm looking for a stand-alone full-text search server with the following properties:
Must operate as a stand-alone server that can serve search requests from multiple clients
Must be able to do ...
49
votes
9answers
38k 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 ...
46
votes
4answers
29k views
How to find all the tables in MySQL with specific column names in them?
I have 2-3 different column names that I want to look up in the entire DB and list out all tables which have those columns. Any easy script?
45
votes
9answers
2k views
Why are composite primary keys still around?
I'm assigned to migrate a database to a mid-class ERP.
The new system uses composite primary keys here and there, and from a pragmatic point of view, why?
Compared to autogenerated IDs, I can only ...
45
votes
11answers
32k views
MySQL for Python in Windows
I am finding it difficult to use MySQL with Python in my windows system.
I am currently using Python 2.6. I have tried to compile MySQL-python-1.2.3b1 (which is supposed to work for Python 2.6 ?) ...
44
votes
12answers
41k views
Installing mysql2 gem for Rails 3
I am having some problems when trying to install mysql2 gem for Rails 3. When I try to install it by issuing "bundle install" command or "gem install mysql2" it gives me following error "Error ...
44
votes
10answers
33k views
Problem with mysql2 and rails3 (bundler)
`establish_connection': Please install the mysql2 adapter: `gem install activerecord-mysql2-adapter` (no such file to load -- active_record/connection_adapters/mysql2_adapter) (RuntimeError)
from ...
44
votes
2answers
16k views
UTF-8: General? Bin? Unicode?
I'm trying to figure out what collation I should be using for various types of data. 100% of the content I will be storing is user-submitted.
My understanding is that I should be using UTF-8 General ...
43
votes
6answers
11k views
Best database field type for a URL
I need to store a url in a MySQL table. What's the best practice for defining a field that will hold a URL with an undetermined length?
43
votes
14answers
26k views
Quick easy way to migrate SQLite3 to MySQL?
Anyone know a quick easy way to migrate a SQLite3 database to MySQL?
42
votes
11answers
18k 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
...
41
votes
2answers
2k views
Best way to code Achievements system
I'm thinking of the best way to design an achievements system for use on my site. The database structure can be found at MySQL: Best way to tell 3 or more consecutive records missing and this thread ...