All language subtitles for Introduction To PostgreSQL.en_US

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian Download
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: WEBVTT 00:00.050 --> 00:01.340 In this particular lecture. 00:01.340 --> 00:06.050 Let's go ahead and let's have a brief introduction to PostgreSQL. 00:06.080 --> 00:10.820 So what exactly is PostgreSQL or PostgreSQL. 00:10.820 --> 00:17.720 So PostgreSQL or Postgres is a powerful open source relational database management system. 00:17.720 --> 00:19.790 So let's dissect this statement. 00:19.790 --> 00:26.360 So Postgres is powerful meaning that using Postgres you could build some really complex web applications. 00:26.360 --> 00:31.640 And Postgres as a database management system could support those applications. 00:31.640 --> 00:34.100 Well, therefore it's a powerful system. 00:34.100 --> 00:37.370 It's open source, meaning that it's actually free to use. 00:37.370 --> 00:40.340 And it's a relational database management system. 00:40.340 --> 00:46.310 That means it supports tables and allows us to have relationship between those database tables. 00:46.460 --> 00:52.880 Now remember that PostgreSQL is not a database, it's actually a database management system. 00:52.880 --> 00:58.010 So it's essentially like a software which allows us to create and manage databases. 00:58.010 --> 01:03.290 However, to keep things simple, we say that Postgres is a database. 01:03.710 --> 01:08.600 It's a popular choice for small scale applications to large scale projects. 01:08.600 --> 01:14.690 So if you are a startup which wants to build a small application for its users, you could use Postgres. 01:14.690 --> 01:20.330 And if you want to build large scale, enterprise level production apps in that particular case as well, 01:20.330 --> 01:23.090 you could go ahead and make use of the Postgres database. 01:23.090 --> 01:28.370 So no matter what kind of a software you're building, if you're building small scale applications or 01:28.370 --> 01:32.300 a large enterprise application, Postgres suits all needs. 01:32.300 --> 01:38.780 Postgres is open source, meaning the source code for Postgres is available for free and it can be widely 01:38.780 --> 01:40.910 used, modified and distributed. 01:40.910 --> 01:46.400 So you could also create your very own flavor of Postgres database management system, and you could 01:46.400 --> 01:49.940 distribute it and also use it in your very own projects as well. 01:49.940 --> 01:54.650 The next thing about Postgres is that it's an object relational database. 01:54.980 --> 01:59.210 So what exactly do we mean by an object relational database. 01:59.210 --> 02:05.840 So a traditional database only supports simple data types like integers, strings, numbers, floats, 02:05.840 --> 02:11.060 etc. that means you could go ahead and store integer values, strings, floating point numbers, so 02:11.060 --> 02:12.080 on and so forth. 02:12.080 --> 02:17.990 However, in an object relational database system, you could also go ahead and create your very own 02:17.990 --> 02:19.940 complex data types as well. 02:19.940 --> 02:25.100 Or you could basically go ahead and have user defined data types, and then you could save the data 02:25.100 --> 02:27.110 of those types into your database. 02:27.110 --> 02:32.930 So essentially in an object relational database management system you could go ahead and save objects 02:32.930 --> 02:33.380 as well. 02:33.380 --> 02:39.920 Now along with this object relational databases also include the ability to have object oriented programming 02:39.920 --> 02:43.580 features such as classes, encapsulation and inheritance. 02:43.580 --> 02:50.510 Now such object relational databases are specifically useful when dealing with apps which have a complex 02:50.510 --> 02:52.460 data structure and relationships. 02:52.460 --> 02:57.560 So that means if you are building a modern application wherein you need to go ahead and have some really 02:57.560 --> 03:02.780 complex objects, and you also need to establish a relation between those particular objects. 03:02.780 --> 03:08.030 In that particular case, you could go ahead and make use of Postgres, and on top of it, you could 03:08.030 --> 03:13.460 also go ahead and make use of the Structured Query language whenever you have to manipulate that data. 03:13.460 --> 03:20.120 So I hope this kind of gave you an idea about what exactly Postgres is and what are its different features. 03:20.120 --> 03:26.120 So in order to understand Postgres in a much more better way, let's download and install Postgres on 03:26.120 --> 03:26.900 our machine. 03:26.900 --> 03:32.150 So in the next lecture let's go ahead and let's learn how to install Postgres on a windows machine. 03:32.150 --> 03:36.020 And in the lecture next to that one let's learn how to set it up on a mac. 03:36.020 --> 03:39.530 So thank you very much for watching and I'll see you in the next one. 4862

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.