Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
teste
Language:
Ada
Assembly
Bash
C#
C++ (gcc)
C++ (clang)
C++ (vc++)
C (gcc)
C (clang)
C (vc)
Client Side
Clojure
Common Lisp
D
Elixir
Erlang
F#
Fortran
Go
Haskell
Java
Javascript
Kotlin
Lua
MySql
Node.js
Ocaml
Octave
Objective-C
Oracle
Pascal
Perl
Php
PostgreSQL
Prolog
Python
Python 3
R
Rust
Ruby
Scala
Scheme
Sql Server
Swift
Tcl
Visual Basic
Layout:
Vertical
Horizontal
create table produtos( cod int primary key not null auto_increment, modelo varchar(30) not null, cor varchar(20) not null, objetivo int(7), tamanho varchar(2) not null, qtd_estoque int not null, preco float not null ); create table venda( modelo int, qtd_vendida int, data date, hora char(5), v_total float not null, produto_vendido int not null, foreign key (produto_vendido) references produtos(cod) ); create view calcados as select p.modelo, p.preco from produtos p where tamanho >= 30; create trigger tr_arrdeonda_produto before insert on produtos for each row set new.preco = round(new.preco);
Absolute service time: 0,39 sec, absolute service time: 0,38 sec
edit mode
|
history
|
discussion
Error(s), warning(s):
Table 'produtos' already exists