+-+-+ +-+ +-+-+-+-+
|G|O| |4| |H|I|V|E|
+-+-+ +-+ +-+-+-+-+

 --- A GOPHER-LIKE INTERFACE FOR HIVE BLOCKCHAIN ---

Using SQL Tools to editing table on LibreOffice Base

BY: @darsondrew | CREATED: April 26, 2018, 11:39 a.m. | VOTES: 12 | PAYOUT: $0.45 | [ VOTE ]

[IMAGE: https://steemitimages.com/DQmfDjdkXyuaJnVnPudq5LeaTx1wLWhDCx5eriVcUY5DQQi/canok.png]

Source Image

What Will I Learn?

In the video I give an explanation how to using SQL Tools in LibreOffice base.

What is LibreOffice Database?

My Opinion : LibreOffice Base is a LibreOffice application component that works to create and manipulate a structured database.

Based on LibreOffice's official website, LibreOffice base can be explained as below.
> Base is a full-featured desktop database front end, designed to meet the needs of a broad array of users. Base caters to power users and enterprise requirements, providing native-support drivers for some of the most widely employed multi-user database engines: MySQL/MariaDB, Adabas D, MS Access and PostgreSQL. In addition, the built-in support for JDBC- and ODBC-standard drivers allows you to connect to virtually any other existing database engine as well.

What is LibreOffice Base Table?

is a collection of data that can be manipulated and managed to create a Query, Form and Report on a Database.

Requirements

Information

Difficulty

Intermediate

Description

There are several ways to edit a table, and using SQL code is one of them. Any edits that can be done manually can also be done via SQL code, and in the video I attached, I discussed how to add, edit and delete a data record in the table, I explained in detail including all Tab,Comma and Space in encoding.

Short explanation

[IMAGE: https://cdn.utopian.io/posts/c43f94f0b004a38cd3af4dc2c6c26365f408first.PNG]

In the photo above, I have created a Code to add a data record, and after that click on the "Execute" button. If the "Status" column says "Command executed successfully" then the SQL command you provided is true and successful

[IMAGE: https://cdn.utopian.io/posts/b9fa7919711f3f76e475d1e8cb3fd1f8cd67BARU.PNG]

In writing code like the photo above, I wrote "Indahkah perbedaan" as Title, "Last Child" As Director, and "6" As Running Time.

[IMAGE: https://cdn.utopian.io/posts/e7c34daa625345f32bafd5a396a75e20c4e8second.PNG]

The photo above is the result of a successful command code.

The code I use in this tutorial

INSERT INTO
        "Music"

        (
         "Title"
        ,"Director"
        ,"Running Time"
        )

VALUES
        (
         'Indahkah Perbedaan'
        ,'Last Child'
        ,'6'
        )
Update
        "Music"
set
        "Genre" = 'Pop'
Where
        "MusicID" = '26'
 and        "Running Time" = '5'
DELETE FROM

        "Music"

WHERE
        "MusicID" = '1'
 and        "Director" = 'Bring me to Horizon'
DELETE FROM

        "Music"

WHERE
        "Running Time" = '5'

Video Tutorial

https://youtu.be/WdEirW3mDSU

Curriculum

However I have made some Video Tutorials how to use Apache OpenOffice, you can see it below :
- Apache Open Office learn to create relationship on OpenOffice Base
- Apache OpenOffice learn to use Mail Merge
- Apache OpenOffice Formula learning (1)
- Apache OpenOffice Formula learning (2)
- And if you want to know more of tutorials you can directly see on my profile

Posted on Utopian.io - Rewarding Open Source Contributors

TAGS: [ #utopian-io ] [ #video ] [ #tutorial ] [ #libreoffice ]

Replies

@rosatravels | April 28, 2018, 3:04 a.m. | Votes: 1 | [ VOTE ]

Hi @darsondrew

Thank you for your contribution but unfortunately we are unable to accept your video tutorial for the following reasons:

  • Your video tutorial does not have the 'teaching' aspect where you teach the unique functions of the Open Source Project. The entire video shows what you do on the screen but it lacks proper organization of explanation. Submissions containing unexplained essential steps are rejected.

  • A video tutorial needs to teach the unique technical feature by bringing out insights into the Open Source Project.

  • You also need to work on your audio teaching because there are a lot of pauses in between where there is no teaching and explanation.

If you have further questions, come and contact us at Discord.

Need help? Write a ticket on https://support.utopian.io.
Chat with us on Discord.

[utopian-moderator]

[ BACK TO TRENDING ] [ BACK TO MENU ]
CMD>