LibreOffice Base (40) SQL Join Tables part 1

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ธ.ค. 2024

ความคิดเห็น • 12

  • @matthieuperring
    @matthieuperring 6 ปีที่แล้ว +1

    These videos are awsome
    Thanks so much !👌

  • @tovoconnhen
    @tovoconnhen 10 ปีที่แล้ว

    you're a wondefull guy. it helps me very much

  • @pleabargain
    @pleabargain 8 ปีที่แล้ว

    7:00 designing queries works well with not only one table but *

  • @joelgarciadacosta6215
    @joelgarciadacosta6215 11 หลายเดือนก่อน

    Very good!

  • @pleabargain
    @pleabargain 8 ปีที่แล้ว +1

    7:22 introduces table aliases begs the question though... the DB engine reads left to right top to bottom so the engine has to get to the FROM statement before it knows the aliases so it is going to slow down the search, isn't it? And then has to go back to the top of the query... that would put some extra cpu cycles on the query.

    • @CommanderBalok
      @CommanderBalok 6 ปีที่แล้ว +1

      Not quite. The parser checks to see if the identifier corresponds to a table, and if it does not, it simply makes a symbol table entry with no binding. Later, when it encounters the ALIAS to can go back and bind the alias to the correct table by completing the symbol table entry. Then all it has to do during final processing is verify all symbol table entries are complete, which is an O(1) operation if your symbol table is properly implemented.

  • @pleabargain
    @pleabargain 8 ปีที่แล้ว +1

    10:40 confirmed in LOB 5.1. User comments in SQL are not saved. :( and unfortunately in the video he didn't go back and show whether his comments were saved between design view and sql view.

  • @robitops1547
    @robitops1547 4 ปีที่แล้ว

    excellent

  • @lana_lanita
    @lana_lanita 10 ปีที่แล้ว

    Can you tell please is it possible to download all of your data,tables with names,gender etc...or not? If yes, where I can download this ?

    • @MichaelsTechTutorials
      @MichaelsTechTutorials  10 ปีที่แล้ว

      LibreOffice Base downloads can be found here:
      www.thefrugalcomputerguy.com/libreoffice-base/index.php

  • @Exotic0101
    @Exotic0101 10 ปีที่แล้ว

    I need lessons explain writing code
    I want to convert from Microsoft Office to Libre but ..
    I need to code transmits information from the fields of text in access lists to text boxes in exact Word Page the code opened when button clicked
    can you help me in that , please

    • @MichaelsTechTutorials
      @MichaelsTechTutorials  10 ปีที่แล้ว +1

      Thank you for the comment. I think you want to know about creating macros or using LibreOffice Basic. That is a topic in itself and will not be covered in this LibreOffice Base Tutorial series.