Top "Mysql" questions

MySQL is a free, open source Relational Database Management System (RDBMS) that uses Structured Query Language (SQL).

MySQL Error 1264: out of range value for column

As I SET cust_fax in a table in MySQL like this: cust_fax integer(10) NOT NULL, and then I …

mysql sql insert integer
MySQL Like multiple values

I have this MySQL query. I have database fields with this contents sports,shopping,pool,pc,games shopping,pool,pc,…

mysql sql sql-like
How to change MySQL data directory?

Is it possible to change my default MySQL data directory to another path? Will I be able to access the …

mysql directory default
Search for all occurrences of a string in a mysql database

I'm trying to figure out how to locate all occurrences of a url in a database. I want to search …

mysql
MySQL with Node.js

I've just started getting into Node.js. I come from a PHP background, so I'm fairly used to using MySQL …

mysql node.js
MySQL select one column DISTINCT, with corresponding other columns

ID FirstName LastName 1 John Doe 2 Bugs Bunny 3 John Johnson I want to select DISTINCT results from the FirstName column, but …

mysql
Differences between INDEX, PRIMARY, UNIQUE, FULLTEXT in MySQL?

What are the differences between PRIMARY, UNIQUE, INDEX and FULLTEXT when creating MySQL tables? How would I use them?

mysql indexing key schema
ALTER table - adding AUTOINCREMENT in MySQL

I created a table in MySQL with on column itemID. After creating the table, now I want to change this …

mysql sql alter-table
Get current AUTO_INCREMENT value for any table

How do I get the current AUTO_INCREMENT value for a table in MySQL?

mysql auto-increment
How to create a MySQL hierarchical recursive query

I have a MySQL table which is as follows: id | name | parent_id 19 | category1 | 0 20 | category2 | 19 21 | category3 | 20 22 | category4 | 21 ...... Now, I want …

mysql sql hierarchical-data recursive-query