<?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: pranav more</title>
    <description>The latest articles on DEV Community by pranav more (@pranavm62558007).</description>
    <link>https://dev.to/pranavm62558007</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F416827%2Ff8aadde9-61a9-4a49-a22e-cbb17ea01f97.jpg</url>
      <title>DEV Community: pranav more</title>
      <link>https://dev.to/pranavm62558007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pranavm62558007"/>
    <language>en</language>
    <item>
      <title>What is SQL?</title>
      <dc:creator>pranav more</dc:creator>
      <pubDate>Sun, 11 Oct 2020 12:42:12 +0000</pubDate>
      <link>https://dev.to/pranavm62558007/what-is-sql-3h8l</link>
      <guid>https://dev.to/pranavm62558007/what-is-sql-3h8l</guid>
      <description>&lt;p&gt;SQL is Structured Query Language, which is a computer language for storing, manipulating and retrieving data stored in a relational database.&lt;/p&gt;

&lt;p&gt;SQL is the standard language for Relational Database System. All the Relational Database Management Systems (RDMS) like MySQL, MS Access, Oracle, Sybase, Informix, Postgres and SQL Server use SQL as their standard database language.&lt;/p&gt;

&lt;p&gt;Every table is broken up into smaller entities called fields. The fields in the Customers table consist of CustomerID, CustomerName, Address, City, PostalCode and Country. A field is a column in a table that is designed to maintain specific information about every record in the table.&lt;/p&gt;

&lt;p&gt;A record, also called a row, is each individual entry that exists in a table. For example, there are 91 records in the above Customers table. A record is a horizontal entity in a table.&lt;/p&gt;

&lt;p&gt;A column is a vertical entity in a table that contains all information associated with a specific field in a table.&lt;/p&gt;

&lt;h1&gt;
  
  
  Why SQL?
&lt;/h1&gt;

&lt;p&gt;SQL is widely popular because it offers the following advantages −&lt;/p&gt;

&lt;p&gt;Allows users to access data in the relational database management systems.&lt;br&gt;
Allows users to describe the data.&lt;br&gt;
Allows users to define the data in a database and manipulate that data.&lt;br&gt;
Allows to embed within other languages using SQL modules, libraries &amp;amp; pre-compilers.&lt;br&gt;
Allows users to create and drop databases and tables.&lt;br&gt;
Allows users to create view, stored procedure, functions in a database.&lt;br&gt;
Allows users to set permissions on tables, procedures and views.&lt;/p&gt;

&lt;h1&gt;
  
  
  A Brief History of SQL
&lt;/h1&gt;

&lt;p&gt;1970 − Dr. Edgar F. "Ted" Codd of IBM is known as the father of relational databases. He described a relational model for databases.&lt;br&gt;
1974 − Structured Query Language appeared.&lt;br&gt;
1978 − IBM worked to develop Codd's ideas and released a product named System/R.&lt;br&gt;
1986 − IBM developed the first prototype of relational database and standardized by ANSI. The first relational database was released by Relational Software which later came to be known as Oracle.&lt;/p&gt;

&lt;h1&gt;
  
  
  Some of The Most Important SQL Commands
&lt;/h1&gt;

&lt;p&gt;SELECT - extracts data from a database&lt;br&gt;
UPDATE - updates data in a database&lt;br&gt;
DELETE - deletes data from a database&lt;br&gt;
INSERT INTO - inserts new data into a database&lt;br&gt;
CREATE DATABASE - creates a new database&lt;br&gt;
ALTER DATABASE - modifies a database&lt;br&gt;
CREATE TABLE - creates a new table&lt;br&gt;
ALTER TABLE - modifies a table&lt;br&gt;
DROP TABLE - deletes a table&lt;br&gt;
CREATE INDEX - creates an index (search key)&lt;br&gt;
DROP INDEX - deletes an index&lt;/p&gt;

</description>
      <category>sql</category>
      <category>mysql</category>
      <category>database</category>
    </item>
    <item>
      <title>What is Database?</title>
      <dc:creator>pranav more</dc:creator>
      <pubDate>Sun, 11 Oct 2020 12:36:07 +0000</pubDate>
      <link>https://dev.to/pranavm62558007/what-is-database-2fo0</link>
      <guid>https://dev.to/pranavm62558007/what-is-database-2fo0</guid>
      <description>&lt;p&gt;A database is an organized collection of structured information, or data, typically stored electronically in a computer system. A database is usually controlled by a database management system (DBMS). Together, the data and the DBMS, along with the applications that are associated with them, are referred to as a database system, often shortened to just database.&lt;/p&gt;

&lt;p&gt;Data within the most common types of databases in operation today is typically modeled in rows and columns in a series of tables to make processing and data querying efficient. The data can then be easily accessed, managed, modified, updated, controlled, and organized. Most databases use structured query language (SQL) for writing and querying data.&lt;/p&gt;

</description>
      <category>database</category>
      <category>sql</category>
      <category>datascience</category>
      <category>mysql</category>
    </item>
    <item>
      <title>Why to use JSON</title>
      <dc:creator>pranav more</dc:creator>
      <pubDate>Thu, 01 Oct 2020 15:43:23 +0000</pubDate>
      <link>https://dev.to/pranavm62558007/why-to-use-json-3pim</link>
      <guid>https://dev.to/pranavm62558007/why-to-use-json-3pim</guid>
      <description>&lt;p&gt;Scalable: JSON is language independent, which means it can work well with most of the modern programming language. Let’s say if we need to change the server side language, in that case it would be easier for us to go ahead with that change as JSON structure is same for all the languages.&lt;br&gt;
Light weight: When working with AJAX, it is important to load the data quickly and asynchronously without requesting the page re-load. Since JSON is light weighted, it becomes easier to get and load the requested data quickly.&lt;br&gt;
Standard Structure: As we have seen so far that JSON objects are having a standard structure that makes developers job easy to read and write code, because they know what to expect from JSON.&lt;br&gt;
Easy to read and write:&lt;br&gt;
Text based, human readable data exchange format&lt;/p&gt;

</description>
      <category>json</category>
      <category>xml</category>
      <category>javascript</category>
      <category>devops</category>
    </item>
    <item>
      <title>15 websites to get free stock images</title>
      <dc:creator>pranav more</dc:creator>
      <pubDate>Mon, 31 Aug 2020 06:12:22 +0000</pubDate>
      <link>https://dev.to/pranavm62558007/15-websites-to-get-free-stock-images-3hh</link>
      <guid>https://dev.to/pranavm62558007/15-websites-to-get-free-stock-images-3hh</guid>
      <description>&lt;p&gt;&lt;a href="https://youtu.be/GrxuGQ2Y4fw"&gt;https://youtu.be/GrxuGQ2Y4fw&lt;/a&gt;&lt;/p&gt;

</description>
      <category>freeimages</category>
    </item>
  </channel>
</rss>
