myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
L
@Luan_Alves
atividade sql sistema de mercado
SQL
1 year ago
create table Cliente( id_cliente integer (10) primary key not null, nome varchar (50) not null, cpf char (11) unique, telefone varchar (15), email varchar (50), data_cadastro date ); create table Produto(
ativadade sql Sistema de Gerenciamento de Academia
SQL
1 year ago
--tabelas create table clientes( id_cliente integer (10) primary key not null, nome varchar (100) not null, idade integer(2) not null, telefone varchar(15) not null, data_matricula date ); create table instrutores( id_instrut
atividade sql 2
SQL
1 year ago
-- atividade sql 2 create table livros( id_livro integer(20) primary key not null, titulo varchar(100) not null, autor varchar (100) not null, ano_publicacao integer(4) not null ); create table clientes( id_cliente integer(20) p
Atividade avaliativa 3
SQL
1 year ago
-- atividade avaliativa sql create table cliente( id_cliente integer(20)not null primary key, nome varchar(50)not null, cpf char(11) unique, telefone varchar(15), endereco varchar (100), data_cadastro date );
atividade 1
SQL
1 year ago
--tabela editora atividade 1 create table editora( id_edit numeric(10) not null primary key, nome char(50) not null, cnpj varchar(14) not null unique, endereco varchar(50) not null, telefone numeric(11) not null , cidade cha
aula 1 sql
SQL
1 year ago
-- criando a tabela CREATE TABLE aluno( RA numeric(8)not null primary key, nome char(40) not null, rg numeric(10)not null unique, endereco varchar(50), sexo char(1) check (sexo = 'M' or sexo = 'F'), dt_nasc date );
Previous
Next page