top of page
Foto do escritorLucas Linux

Instalando MySQL Server + Comandos

Anteriormente fiz um artigo instalando o pacote LAMP, uma combinação de softwares livres e de código aberto que instala o Apache+MySQL+PHP. Clique aqui e confira.


Mas caso seu objetivo seja instalar apenas o banco de dados MySQL, siga as próximas orientações.


 

ATUALIZANDO O SISTEMA

sudo apt update



INSTALANDO O MYSQL

sudo apt install mysql-server



ACESSANDO O BANCO

$sudo mysql -u root -p

<SEM SENHA POR PADRÃO>



VISUALIZAR BANCOS

mysql> show databases;



CRIAR BANCO DE DADOS

mysql> create DATABASE lucaslinux;



SELECIONAR BANCO

mysql> USE lucaslinux;



CRIANDO TABELA

mysql> create table cliente( clicod integer not null primary key auto_increment, clinome varchar(60) not null, clirg int not null, clicpf varchar(60) );




MOSTRAR TABELAS

mysql> show tables;



VISUALIZANDO COLUNAS DA TABELA

mysql> describe cliente;



INSERINDO COLUNA NA TABELA

mysql> alter table cliente add telefone varchar(20);


EXCLUIR COLUNA DA TABELA

mysql> ALTER TABLE cliente DROP telefone;



RENOMEAR TABELA

mysql> ALTER TABLE cliente RENAME pessoa;


DELETAR UMA TABELA

mysql> DROP TABLE pessoa;




DELETAR UMA BASE DE DADOS

mysql> DROP DATABASE lucaslinux;



Não esqueça de seguir o Canal do Youtube e o Facebook LUCAS LINUX

Comments


bottom of page