[4] MySQL – Podstawy

3 lutego 2023 Wyłączono przez Adam [zicherka] Nogły

Poniżej przedstawię podstawy podstaw poruszania się po monitorze MySQL. Aby się dostać/zalogować do monitora należy wprowadzić nazwę użytkownika i hasło. Każde polecenie wydane w monitorze MUSI kończyć się średnikiem [;] – jest to informacja, że w tym miejscu jest koniec instrukcji.

# logujemy się do serwera MySQL
root@vfbsd01:~ # mysql -u root -p
Enter password: # wpisz haslo root’a (ale z MySQL)
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.30 Source distribution

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

# stwórz bazę danych
root@localhost [(none)]> create database test_database;
Query OK, 1 row affected (0.01 sec)

# stwórz tabele w bazie danych
root@localhost [(none)]> create table test_database.test_table (id int, type varchar(50), name varchar(50), primary key (id));
Query OK, 0 rows affected (0.02 sec)

# wstaw dane do tabel
root@localhost [(none)]> insert into test_database.test_table(id, type, name) values("001", "UNIX", "FreeBSD");
Query OK, 1 row affected (0.04 sec)
root@localhost [(none)]> insert into test_database.test_table(id, type, name) values("002", "LINUX", "RockyLinux");
Query OK, 1 row affected (0.00 sec)

# pokaż zawartość tabel
root@localhost [(none)]> select * from test_database.test_table;
+----+-------+------------+
| id | type | name |
+----+-------+------------+
| 1 | UNIX | FreeBSD |
| 2 | LINUX | RockyLinux |
+----+-------+------------+
2 rows in set (0.00 sec)

# skasuj bazę danych
root@localhost [(none)]> drop database test_database;
Query OK, 1 row affected (0.02 sec)

root@localhost [(none)]> exit;
Bye
root@vfbsd01:~ #