In the video I give an explanation how to using SQL Tools in LibreOffice base.
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.
is a collection of data that can be manipulated and managed to create a Query, Form and Report on a Database.
Intermediate
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.
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
In writing code like the photo above, I wrote "Indahkah perbedaan" as Title, "Last Child" As Director, and "6" As Running Time.
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'
How to Looking for a blank value and mark it on LibreOffice Base
LibreOffice Continue to Grouping data Report on LibreOffice Base
How to connect a table to creating Report on LibreOffice Base
However I have made some Video Tutorials how to use Apache OpenOffice, you can see it below :