<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Juliet Kathuke</title>
    <description>The latest articles on DEV Community by Juliet Kathuke (@kathukejulie).</description>
    <link>https://dev.to/kathukejulie</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2145002%2Ffc99989f-d600-47dc-9126-de0f7e323997.jpeg</url>
      <title>DEV Community: Juliet Kathuke</title>
      <link>https://dev.to/kathukejulie</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kathukejulie"/>
    <language>en</language>
    <item>
      <title>Introduction to SQL</title>
      <dc:creator>Juliet Kathuke</dc:creator>
      <pubDate>Mon, 30 Sep 2024 08:44:06 +0000</pubDate>
      <link>https://dev.to/kathukejulie/introduction-to-sql-dhf</link>
      <guid>https://dev.to/kathukejulie/introduction-to-sql-dhf</guid>
      <description>&lt;p&gt;SQL stands for Structured Query Language. It enables users to communicate with databases. It is used to retrieve data,Update records and manage database structures.&lt;br&gt;
To create a Database or tables CREATE function is used,&lt;br&gt;
for Example CREATE DATABASE storeDB; - a database created called storeDB.&lt;br&gt;
Now let's create a table called sales: &lt;br&gt;
CREATE TABLE sales (saleID INT PRIMARY KEY,productName VARCHAR(30),customerID INT );&lt;br&gt;
To retrieve data, SELECT Function is used. Data is selected from a table, for example SELECT * from Sales; &lt;br&gt;
In the example above, we are selecting all rows from Sales table.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
