M.M.Stephin Nadar's Blog

Never lose hope. You never know what tomorrow may bring.

Our Telegram Bots

▼

Our sites

▼
Showing posts with label mysql. Show all posts
Showing posts with label mysql. Show all posts
17 April 2013

import GeoIP csv to MySQL DB provided by MaxMind

›
you can download GeoIP csv database from http://www.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip unzip  and extract the csv fil...
24 October 2012

group by,order by sum value together

›
Table Structure and Data employer_id    salary 111              1000 112              2000 113              1000 111              100...
7 June 2012

reset mysql root password

›
ps -ef | grep mysql - checks if mysql / mysqld is one of the running processes.       pkill mysqld - kills the daem...
25 March 2012

unique combination of multiple columns in mysql

›
alter table tablename add unique index ( column1,column2,column3 );
14 March 2012

[mysql ] perform order by column and rand() in single query

›
SELECT * FROM (     SELECT * FROM table1     ORDER BY nos desc limit 0,1 )           )  T1 ORDER BY RAND ()         usage: if ...
28 January 2012

sort by occurence of anyvalue in a column

›
SELECT * , COUNT( ref ) AS occurances FROM table GROUP BY ref ORDER BY occurances DESC
›
Home
View web version
Powered by Blogger.