Skip to content

Instantly share code, notes, and snippets.

@mhaligowski
Created September 28, 2012 09:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mhaligowski/3798776 to your computer and use it in GitHub Desktop.
Save mhaligowski/3798776 to your computer and use it in GitHub Desktop.
[Technogaraż] Kurs SQL, część I
-- schemat bazy danych
create table products (
id number(10) primary key,
name varchar2(255),
price number(10),
vat number(2)
)
/
insert into products values (1, 'Śrubokręt', 1800, 23)
/
insert into products values (2, 'Klucz francuski', 2800, 23)
-- pobieranie
select * from products;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment