Created
September 28, 2012 09:04
-
-
Save mhaligowski/3798776 to your computer and use it in GitHub Desktop.
[Technogaraż] Kurs SQL, część I
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- pobieranie | |
select * from products; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment