channel5567
channel5567
  • 19
  • 2 333 841

Video

Piano App for iPhone, part 4 of 4
zhlédnutí 653Před 11 lety
Creating piano app for iPhone with Corona SDK in Lua
Piano App for iPhone, part 3 of 4
zhlédnutí 232Před 11 lety
Creating piano app for iPhone with Corona SDK in Lua
Piano App for iPhone, part 2 of 4
zhlédnutí 322Před 11 lety
Creating piano app for iPhone with Corona SDK in Lua
Piano App for iPhone, part 1 of 4
zhlédnutí 772Před 11 lety
Creating piano app for iPhone with Corona SDK in Lua
Creating OOP, Classes and Objects in Lua
zhlédnutí 17KPřed 11 lety
Creating OOP, Classes and Objects in Lua
Oro Azteca para iPhone y Android
zhlédnutí 373Před 11 lety
Oro Azteca para iPhone y Android
Aztec Gold for iPhone and Android
zhlédnutí 555Před 11 lety
Aztec Gold iPhone and Android Game
AndEngine - Starting a Game Tutorial 2012 - Part 11 of 11
zhlédnutí 9KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 10 of 11
zhlédnutí 6KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 9 of 11
zhlédnutí 4KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 8 of 11
zhlédnutí 4,2KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 7 of 11
zhlédnutí 4,6KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 6 of 11
zhlédnutí 10KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 5 of 11
zhlédnutí 7KPřed 12 lety
This tutorial is an introduction to AndEngine and is help getting started with creating games for Android.
AndEngine - Starting a Game Tutorial 2012 - Part 4 of 11
zhlédnutí 16KPřed 12 lety
AndEngine - Starting a Game Tutorial 2012 - Part 4 of 11
AndEngine - Starting a Game Tutorial 2012 - Part 3 of 11
zhlédnutí 7KPřed 12 lety
AndEngine - Starting a Game Tutorial 2012 - Part 3 of 11
AndEngine - Starting a Game Tutorial 2012 - Part 2 of 11
zhlédnutí 12KPřed 12 lety
AndEngine - Starting a Game Tutorial 2012 - Part 2 of 11
AndEngine - Starting a Game Tutorial 2012 - Part 1 of 11
zhlédnutí 28KPřed 12 lety
AndEngine - Starting a Game Tutorial 2012 - Part 1 of 11

Komentáře

  • @ravichandrasekara7907

    great

  • @kennethkimathi7313
    @kennethkimathi7313 Před měsícem

    The PK in the subscription table has repeating entries. How is that?

  • @lekhanhhuyen7402
    @lekhanhhuyen7402 Před 2 měsíci

    In Subscription table : there are 2 records with the same ID wilson44. The video stated that CustID is the PK, so this ID must be unique. I am confused.

  • @micmike
    @micmike Před 3 měsíci

    Concise! Thanks

  • @smtxtv
    @smtxtv Před 4 měsíci

    Yep. Great explanation. You uncomplicate what has been previously presented in a disjointed, convoluted manner. Thx ! What I needed, for sure.

  • @user-dp7lr5qh6o
    @user-dp7lr5qh6o Před 4 měsíci

    Thank you so much. After 8 years it is still helpful

  • @adilmughal2251
    @adilmughal2251 Před 6 měsíci

    one of the best explanations on database normalization.

  • @kodiq3429
    @kodiq3429 Před 6 měsíci

    Thank you so much. Its first video out of 15 when I understand it

  • @GrantWill
    @GrantWill Před 7 měsíci

    Your example for a 1st Normal Form table doesn't meet the requirement of rows being uniquely identified. Alan Smith could buy two Xbox Ones and ship them both to his address in Miami and there would then be two duplicate records. Needs an order id/qty column.

  • @user-qw6ho1co1p
    @user-qw6ho1co1p Před 9 měsíci

    I have a question..? How can a Primary key column have repeating values? Is that possible? Like in the customer Table - Cust_ID = wilson44

    • @jpaxonreyes
      @jpaxonreyes Před 2 měsíci

      If I have the right idea, normalization is applied at the design level. Although wilson44 is duplicated and listed as a primary key, there is actually no table or database yet. The customer id is denoted as the primary key because that's how he wants to structure the database. He's still normalizing and everything gets fixed before implementing the design.

  • @awildpiizaroll
    @awildpiizaroll Před 10 měsíci

    Question: For 2NF, couldn't you make cust ID and Item a composite key that would determine all values in one table?

  • @jessemorningstar
    @jessemorningstar Před 11 měsíci

    Key correction at 18:40 👉 In the Subscription Table and Sales Invoice Table: Cust ID should be the foreign key not the primary key. The reason being is that values in a primary key column must not, and indeed cannot, be duplicated. wilson44 is duplicated in both tables. To fix this the Subscription Table and the Sales Invoice Table must declare a distinct column as the primary key. 👉 Giving each subscription and sale invoice a unique number will make every entry distinct.

  • @hanzalamansoor
    @hanzalamansoor Před 11 měsíci

    Thank you so much, you saved my time searching for this topic and not been able to find a video with this much details. You also explained it better than my lecturer Which clear my concept about table normalization till 4 normal form. I request you to please make a video on 3.5 n.f as well . ❤ You earn a subscriber here 👍

  • @willardbarrwb
    @willardbarrwb Před 11 měsíci

    Hands down the greatest normalization example and explanation I have ever watched. He used one example straight through unlike others who like to switch the example once they reach 2nf and he explain partial dependency in layman terms than just textbook.

  • @andreamiljak9457
    @andreamiljak9457 Před rokem

    bolji od papica

  • @junioralamu7438
    @junioralamu7438 Před rokem

    I thought 2nd normal form should be not partially dependent (composite key). It looks like you did 3rd normal form in your 2nd normal form since it is a transitive dependency. Or am I wrong?

  • @afkgamer7204
    @afkgamer7204 Před rokem

    pffffffffff And shipping Address??!!! Should not break it in Address and City??????!!!!! Atomic value??????????!!!!

  • @TimeDeck
    @TimeDeck Před rokem

    nice

  • @williamstorey5024
    @williamstorey5024 Před rokem

    I want a xbox for 250 please. ill take everyone the you have

  • @mikeandrewfernandez9797

    Damn, you just made normalization easier. I was having trouble identifying dependencies but the way you explained it was as accurate and practical as hell. Thank you for this wonderful video!

  • @strawberrymochi3420

    1 add unique id, PK 2 check if all non key columns can be defined by PK, separate to 2 tables 3 no duplicated record, separate to entities 4 no multi value dependencies, non key columns relying on PK with duplicated records that are unable to be solved using new unique id. So, create new tables with PK+non key columns

  • @Icey-s
    @Icey-s Před rokem

    Thanks for the video, what are the disadvantages if we include Newsletter in Item table?

  • @aesthetic3810
    @aesthetic3810 Před rokem

    Why did you remove and add different values that's not exist in the old tables? Its confusing and also the primary key is unique and not null. Bro? enlighten me

  • @xitsjinxbtwx
    @xitsjinxbtwx Před rokem

    I’ve come to the conclusion that I’m just stupid, because this still makes no sense. Thanks for trying though🙏🏾

  • @yasirzubair20
    @yasirzubair20 Před rokem

    Clearly explained throughout the entire CZcams platform!

  • @exitspree
    @exitspree Před rokem

    Thanks for this video!

  • @sunilkumarkatta9062

    One doubt How Cust ID could be a primary key, as the attribute value wilson44 is repetative

  • @mzwandiledlamini4552

    For the first time I've seen someone explain this clearly than my lecturers at school.

  • @breezycodes
    @breezycodes Před rokem

    7 years later & this is still gold!

  • @davidsetiabudicomputerscie8683

    If you think my correction are correct, Sir. Please inform your viewer to watch here: czcams.com/video/KK_5lzqIuW0/video.html Thank you and God bless you, Sir.😁

  • @fabimawn
    @fabimawn Před rokem

    Even though this video is 10 years old by now. It's the BEST explaination of a simple but effective implementation of objects that just works!!!

  • @justsaying4488
    @justsaying4488 Před rokem

    Really good video

  • @DirectionNext
    @DirectionNext Před rokem

    Thanks for creating this video. Simple, crisp and to the point with proper example. Amazing video.

  • @Life_truths-bt
    @Life_truths-bt Před rokem

    I cudnt understand this in my whole academic period

  • @kakairecharles3474
    @kakairecharles3474 Před rokem

    Too simplified. Many thanks.

  • @the_derpler
    @the_derpler Před rokem

    I wonder would it be worthwhile to add a `NewsLetters` table and then a junction Table like `Customers_to_Newsletters` so that you are not storing newsletters multiple times? I guess an example would be if say the newsletter changed their name or something?

  • @nak6608
    @nak6608 Před rokem

    Great video was very helpful. However, in 4NF, the relation with Cust ID and Newsletter, shouldn't the Cust_ID be a foreign key not a primary key? It can't be a primary key because wilson44 shows up in multiple rows.

  • @mrgarybusey2052
    @mrgarybusey2052 Před rokem

    Such a great lecture. Thank you so much!

  • @GR4MPI
    @GR4MPI Před rokem

    hm, can i just make new table for each column where i assign each (unique) line ID and then make table where i connect only those IDs to make starting table ?

  • @sailendrakc549
    @sailendrakc549 Před rokem

    wow, i didnt understand about repeating primary key in subscription table and sales invoice table, please someone help me,

  • @benjaminoluyori2924

    Please, how many primary keys can you have/select/create in a 1NF?

  • @cilla___
    @cilla___ Před rokem

    Thank you very much for the explanation, the instruction is very clear and useful!

  • @nadia3828
    @nadia3828 Před rokem

    Best video ever

  • @dionreynolds2274
    @dionreynolds2274 Před rokem

    Thank you

  • @marioayala3910
    @marioayala3910 Před rokem

    You explained in 19 minutes what my professor tried to in 2 hours

  • @priyankakothawale3176

    czcams.com/video/xhY1lvANAvY/video.html

  • @megpen97
    @megpen97 Před rokem

    "Beautiful is not a color, it's an opinion" idk why that was funny to me.

  • @jona312312
    @jona312312 Před rokem

    thanks a lot, sometimes it helps to hear different people explain the same topic. and i listened to my prof but this time i had no idea what he meant. but now i know :D

  • @yogenghodke
    @yogenghodke Před rokem

    Thanks bro

  • @bhrzali
    @bhrzali Před rokem

    Love this tutorial. It's very precise, doesn't waste time, and gets to the point right away.