Top "Mysql" questions

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

Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root

I am not sure how to fix this: dyn-72-33-214-45:python mona$ sudo /usr/local/mysql/bin/mysqld …

mysql sql my.cnf
MySQL: how to get the difference between two timestamps in seconds

Is there a way I can make a query in MySQL that will give me the difference between two timestamps …

mysql timestamp
mysql count group by having

I have this table: Movies (ID, Genre) A movie can have multiple genres, so an ID is not specific to …

mysql sql group-by aggregate-functions
Setting up MySQL and importing dump within Dockerfile

I'm trying to setup a Dockerfile for my LAMP project, but i'm having a few problems when starting MySQL. I …

mysql docker
MySQL - Meaning of "PRIMARY KEY", "UNIQUE KEY" and "KEY" when used together while creating a table

Can anyone explain about the purpose of PRIMARY KEY, UNIQUE KEY and KEY, if it is put together in a …

mysql sql-server primary-key unique-key
Mysql SELECT CASE WHEN something then return field

I have two field nnmu and nnmi , if nnmu is equal to 1, I need to return naziv_mesta from **mesto_…

sql select mysql case
MySQL: update a field only if condition is met

Is it possible to do an UPDATE query in MySQL which updates field value only if certain condition is met? …

mysql if-statement sql-update
How to add AUTO_INCREMENT to an existing column?

How do I add auto_increment to an existing column of a MySQL table?

mysql auto-increment
How to write a stored procedure using phpmyadmin and how to use it through php?

I want to be able create stored procedures using phpMyAdmin and later on use it through php. But I dont …

php stored-procedures mysql phpmyadmin
Laravel whereIn OR whereIn

I'm making a products search by filters: My code: ->where(function($query) use($filter) { if(!empty($filter)){ foreach ($…

php mysql laravel laravel-4 query-builder