Changes for page SQL Query

Last modified by Danniar Firdausy on 2024/09/18 20:00

From version 3.1
edited by eMagiz
on 2022/06/10 12:02
Change comment: There is no comment for this version
To version 4.1
edited by Erik Bakker
on 2022/08/30 15:02
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.eMagiz
1 +XWiki.ebakker
Default language
... ... @@ -1,0 +1,1 @@
1 +en
Content
... ... @@ -5,9 +5,6 @@
5 5  
6 6  Should you have any questions, please get in touch with [[academy@emagiz.com>>mailto:academy@emagiz.com]].
7 7  
8 -* Last update: September 7th, 2021
9 -* Required reading time: 6 minutes
10 -
11 11  == 1. Prerequisites ==
12 12  
13 13  * Basic knowledge of the eMagiz platform
... ... @@ -23,8 +23,6 @@
23 23  
24 24  These basic operations on the database level should allow you to perform the action you want.
25 25  
26 -
27 -
28 28  == 3. SQL Query ==
29 29  
30 30  In this microlearning, we will learn the basics of SQL queries. With the help of this information, you can start writing the correct queries to retrieve and write data from and to a database. Just as with REST web services, the CRUD operations are represented within the SQL language. They are described as follows:
... ... @@ -46,7 +46,7 @@
46 46  
47 47  When combining all of this you will end up with something like this: INSERT INTO mytable (id, created date, contents) values (:headers[id], :headers[timestamp], :payload). As you can see, we want to insert our row into the table called mytable. We want to insert three values in three separate columns (id, created date, contents). Furthermore, you should note that you can use the header values and (part of) the payload as dynamic input for those values. The notation as depicted above is paramount in making this work.
48 48  
49 -Note that when the primary key value already exists in the database, you will receive an error (duplicate key violation). Just as you would expect when calling a POST twice in a row with the same unique identifier.
44 +{{info}}When the primary key value already exists in the database, you will receive an error (duplicate key violation). Just as you would expect when calling a POST twice in a row with the same unique identifier.{{/info}}
50 50  
51 51  === 3.2 SELECT ===
52 52  
... ... @@ -58,7 +58,7 @@
58 58  
59 59  When combining all of this, you will end up, in the simplest form, with something like this: SELECT \* from mytable. Expanding on that, we could define that we only want to retrieve the id and contents column. To do so, we slightly alter our SQL query to this: SELECT id,contents from mytable. Building on that further, we could add a condition to the statement, a so-called where clause. With the help of that clause, we can even further narrow down our result set. An example of that would be SELECT id,contents from mytable WHERE id = :headers[id].
60 60  
61 -Note that a SELECT statement never alters the state of the row in the database itself.
56 +{{info}}A SELECT statement never alters the state of the row in the database itself.{{/info}}
62 62  
63 63  === 3.3 UPDATE ===
64 64  
... ... @@ -79,10 +79,8 @@
79 79  
80 80  When combining all of this, you will end up with something as follows DELETE FROM mytable WHERE id = :headers[id]. This statement will delete the row within the table for which the id matches the id in my header. This way, you can clean up parts of your database table.
81 81  
82 -Note that you should be careful when deleting records in a table! Notice the WHERE clause in the DELETE statement. The WHERE clause specifies which record(s) should be deleted. If you omit the WHERE clause, all records in the table will be deleted!
77 +{{warning}}You should be careful when deleting records in a table! Notice the WHERE clause in the DELETE statement. The WHERE clause specifies which record(s) should be deleted. If you omit the WHERE clause, all records in the table will be deleted!{{/warning}}
83 83  
84 -
85 -
86 86  == 4. Assignment ==
87 87  
88 88  See if you can find any database implementation within the projects you can access. This assignment can be completed with the help of the (Academy) project that you have created/used in the previous assignment.
... ... @@ -94,8 +94,6 @@
94 94  * You can dynamically fill the values of the SQL properties with the help of SpEL expressions
95 95  * Other types of databases might require other queries
96 96  
97 -
98 -
99 99  If you are interested in this topic and want more information, please read the help text provided by eMagiz and read more information on the following link:
100 100  
101 101  * https://www.w3schools.com/sql/default.Asp