Wiki/Cheatsheets/mariadb.md
2025-05-05 02:26:57 +02:00

501 B

title, description, published, date, tags, editor, dateCreated
title description published date tags editor dateCreated
mariadb true 2023-04-28T02:38:18.678Z markdown 2023-04-28T02:22:37.379Z

MariaDB

create database DATABASE;

create user USER@localhost identified by 'PASSWORD'; grant all privileges on DATABASE.* to USER@localhost;

drop user USER@localhost; drop database DATABASE;

show databases; use mysql; select user from user;

mariadb -u USER -p DATABASE < backup.sql mariadb_dump -u USER -p DATABASE > backup.sql

flush privileges;