Skip to content

Instantly share code, notes, and snippets.

View ednakatani's full-sized avatar
👾

Eduardo Nakatani ednakatani

👾
View GitHub Profile
@ednakatani
ednakatani / Aula2.ipynb
Created September 6, 2022 00:07
data science
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ednakatani
ednakatani / sql.sql
Created September 5, 2022 00:26
sistema
create table usuarios
(
id_usuario int auto_increment,
Nome varchar(255) not null,
perfil int not null,
inicio_acesso datetime default not null,
fim_acesso datetime not null,
origem int null,
primary key (id_usuario)
);