BAZY

 0    16 flashcards    blazejluszczak
download mp3 print play test yourself
 
Question Answer
Wejście do bazy
start learning
Use
Tabele w bazie
start learning
show tables;
Tworzenie bazy
start learning
create database nazwa;
Sprawdzanie obecnej uzywanej bazy
start learning
select database()
Ustawianie biezacej bazy
start learning
use
Tworzenie tabeli
start learning
Creating table
Sprawdzanie poprawności tabeli
start learning
describe
spradzanie tabeli
start learning
show tables
Wprowadzenie rekordow do tablei
start learning
insert into dane -> values
Sprawdzanie danycgh
start learning
select * from <nazwa>
Wyszukiuwanie kolumny
start learning
select ... from <nazwa tabeli
Określenie kryterów danych
start learning
select ... from dane where
Sortowanie wynikow
start learning
Select ... from dane order by (desc malejaca)
Ograniczenie
start learning
select ... from dane limit 3
Wyświetlanie rekordów od drugiego
start learning
select ... from dane limit 1,2;
Łączenie kolumn
start learning
select concat (nazwa) as nazwa razem from dane

You must sign in to write a comment