Welcome To Snipplr


Everyone's Recent SQL Snippets



This will create and then populate a MySQL table with a list of the names and USPS abbreviations for US states and possessions in existence.
3 2630 posted 15 years ago by cbrant
This will create and then populate a MySQL table with a list of the names and ISO 3166 codes for countries in existence.
5 1357 posted 15 years ago by cbrant
If you ever need to build a comma delimited list out of a column in SQL you can easily do this using the COALESCE function.
0 576 posted 15 years ago by mcbutterbuns
1 712 posted 16 years ago by stancell
You can store an IP address in an INT UNSIGNED (4 bytes) which is of course much more efficient and faster than a CHAR(15). MySQL has two built-in functions: INET_ATON() and INET_NTOA(). These two functions are used allover the place in any TCP/IP s...
0 871 posted 16 years ago by zingo
To grant all privileges to a user from any location login to the mysql shell and run the following queries.
3 653 posted 16 years ago by cbrant
To reset the MySQL root password, login to the mysql shell and run the following commands.
1 648 posted 16 years ago by cbrant
Wenn ein INSERT einen doppelten Wert erzeugen würde, wird das UPDATE ausgeführt.
1 491 posted 16 years ago by drk
https://www.chrisjmendez.com/2008/03/23/mysql-commands-i-wish-i-could-remember/
9 723 posted 16 years ago by chrisaiv
4 777 posted 16 years ago by wolfie
It does not show the grants themselves, but shows all users with grants.
0 631 posted 16 years ago by therobot
1 796 posted 16 years ago by zingo
0 532 posted 16 years ago by Caliban
Generate the SQL necessary to create triggers that use the sequences listed above. NOTE: This particular script assumes that the tables all start with ‘tbl’. It may need to be modified to work with different naming conventions.
0 533 posted 16 years ago by thecrumb
Generate the SQL necessary to create sequences for every table. NOTE: This doesn’t create sequences. The results need to be copied and run as a script.
0 782 posted 16 years ago by thecrumb
Get a list of all the user tables.
0 850 posted 16 years ago by thecrumb
Get all my columns and comments.
0 577 posted 16 years ago by thecrumb
Noob stuff, but I always end up looking this up.
0 611 posted 16 years ago by rengber
Small query to help you relocate those modules you are not using anyways.
2 687 posted 16 years ago by torkil
If you are deleting all the rows in a table and you also want to reset the values that will get used by auto increment, this is how to do it.
0 730 posted 16 years ago by jachin
You can generate a simple bar chart of the values by executing this command...
0 748 posted 16 years ago by zingo