summaryrefslogtreecommitdiffstats
path: root/software/sql.page
diff options
context:
space:
mode:
Diffstat (limited to 'software/sql.page')
-rw-r--r--software/sql.page19
1 files changed, 0 insertions, 19 deletions
diff --git a/software/sql.page b/software/sql.page
index 881a040..2d2a307 100644
--- a/software/sql.page
+++ b/software/sql.page
@@ -5,25 +5,6 @@ toc: no
# SQL
-### MySQL-specific Tricks
-
-To output in tab-delimited format, do something like:
-
- mysql -u root -p -B < some_command.sql > output.tab
-
-### Setup User Permissions
-
-On contemporary Debian, to login as root do:
-
- sudo mysql -u root
-
-Then create a new password-less local-only user:
-
- CREATE USER 'bnewbold'@'localhost' IDENTIFIED BY '';
- UPDATE mysql.user SET plugin='unix_socket' WHERE user='bnewbold';
- GRANT ALL PRIVILEGES ON * . * TO 'bnewbold'@'localhost';
- FLUSH PRIVILEGES;
-
### UPDATE with JOIN
To do an update based on a join::