MySQL: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 December 2025

  • curprev 15:3215:32, 17 December 2025Manetta talk contribs 754 bytes +754 Created page with " Login $ mariadb -u USERNAME -p Create user CREATE USER 'wiki'@'localhost' IDENTIFIED BY 'wikipassword'; Permissions GRANT ALL ON *.* TO 'user'@'localhost' WITH GRANT OPTION; Check permissions SHOW GRANTS FOR 'user'@'localhost'; Create database CREATE DATABASE database_name; Delete database DROP DATABASE database_name; Inspect database use DATABASE show tables; desc TABLE; (displays the properties of the table) show keys from TABLE; dump sql f..."