
  <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
      <title>SQL2Ecto</title>
      <link>https://SQL2Ecto.org/blog</link>
      <description>Transition seamlessly from SQL to Ecto through guided leasons.</description>
      <language>en-us</language>
      <managingEditor>talamsupport@auroville.org.in (Shardul)</managingEditor>
      <webMaster>talamsupport@auroville.org.in (Shardul)</webMaster>
      <lastBuildDate>Wed, 01 Jan 1000 00:00:00 GMT</lastBuildDate>
      <atom:link href="https://SQL2Ecto.org/feed.xml" rel="self" type="application/rss+xml"/>
      
  <item>
    <guid>https://SQL2Ecto.org/blog/Introduction</guid>
    <title>Introduction</title>
    <link>https://SQL2Ecto.org/blog/Introduction</link>
    <description>In this tutorial, you will learn about SQL queries and their equivalent Ecto queries. Both are used to interact with the database.</description>
    <pubDate>Wed, 01 Jan 1000 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/Aliases in Ecto</guid>
    <title>Aliases in Ecto</title>
    <link>https://SQL2Ecto.org/blog/Aliases in Ecto</link>
    <description>In Ecto, aliases are used to set names for modules. You can reference the module by that name and access everything inside it.</description>
    <pubDate>Tue, 31 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/SELECT Query</guid>
    <title>SELECT Query</title>
    <link>https://SQL2Ecto.org/blog/SELECT Query</link>
    <description>`select` and `from` are used to view a table and any columns from a table.</description>
    <pubDate>Mon, 30 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/LIMIT Query</guid>
    <title>LIMIT Query</title>
    <link>https://SQL2Ecto.org/blog/LIMIT Query</link>
    <description>The `limit` command is used to limit the number of records from being fetched.</description>
    <pubDate>Sun, 29 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/WHERE Query</guid>
    <title>WHERE Query</title>
    <link>https://SQL2Ecto.org/blog/WHERE Query</link>
    <description>The `where` command is used to select records based on a condition. It returns only those records that satisfy the conditions specified in the `where` command, effectively filtering the records.&quot;</description>
    <pubDate>Sat, 28 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/Comparison Operators</guid>
    <title>Comparison Operators</title>
    <link>https://SQL2Ecto.org/blog/Comparison Operators</link>
    <description>In `SQL` and `Ecto`, comparison operators are used to compare values, allowing you to filter results based on specified conditions.</description>
    <pubDate>Fri, 27 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/Logical Operators</guid>
    <title>Logical Operators</title>
    <link>https://SQL2Ecto.org/blog/Logical Operators</link>
    <description>Logical operators allow you to use multiple logical operators in a query.</description>
    <pubDate>Thu, 26 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/LIKE Operator</guid>
    <title>LIKE Operator</title>
    <link>https://SQL2Ecto.org/blog/LIKE Operator</link>
    <description>The `like` operator is used to match string values in `where`. You can fetch records that contain specific string characters.</description>
    <pubDate>Wed, 25 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/AND Operator</guid>
    <title>AND Operator</title>
    <link>https://SQL2Ecto.org/blog/AND Operator</link>
    <description>`AND` is used to check for multiple conditions in a query. `AND` will return records which satisfy all the conditions.</description>
    <pubDate>Tue, 24 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/BETWEEN Operator</guid>
    <title>BETWEEN Operator</title>
    <link>https://SQL2Ecto.org/blog/BETWEEN Operator</link>
    <description>The `between` command is used in the `where` to check for a range. It verifies whether the records have values within the specified range and is typically combined with the `and` command.</description>
    <pubDate>Mon, 23 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/IN Query</guid>
    <title>IN Query</title>
    <link>https://SQL2Ecto.org/blog/IN Query</link>
    <description>The `in` command is employed to retrieve records by checking for multiple values in the `where` clause.</description>
    <pubDate>Sun, 22 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/IS NULL Operator</guid>
    <title>IS NULL Operator</title>
    <link>https://SQL2Ecto.org/blog/IS NULL Operator</link>
    <description>The `is null` command is used to fetch records with no value or null value.  It is used in the `where` command.</description>
    <pubDate>Sat, 21 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/OR Operator</guid>
    <title>OR Operator</title>
    <link>https://SQL2Ecto.org/blog/OR Operator</link>
    <description>The `or` command is used to check either one of the conditions in `where`. In the `or` condition either one can be true or both conditions can be true. It is commonly used in the `where` clause.</description>
    <pubDate>Fri, 20 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/NOT Operator</guid>
    <title>NOT Operator</title>
    <link>https://SQL2Ecto.org/blog/NOT Operator</link>
    <description>The `not` command is used to exclude some values from the records.</description>
    <pubDate>Thu, 19 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/ORDER BY</guid>
    <title>ORDER BY</title>
    <link>https://SQL2Ecto.org/blog/ORDER BY</link>
    <description>The `order by` command is used to alphabetically order records. `desc` helps in descending order and `asc` helps in ascending order. The default ordering is `asc`.</description>
    <pubDate>Wed, 18 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/COUNT</guid>
    <title>COUNT</title>
    <link>https://SQL2Ecto.org/blog/COUNT</link>
    <description>The `COUNT` command is used to count the total number of non-null values for a particular  column. You can also count the entire table.</description>
    <pubDate>Tue, 17 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/SUM</guid>
    <title>SUM</title>
    <link>https://SQL2Ecto.org/blog/SUM</link>
    <description>The `SUM` command is used to obtain the sum of a particular column in a table. It provides the total numeric value of the specified column and operates exclusively on numerical values.</description>
    <pubDate>Mon, 16 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/MIN and MAX</guid>
    <title>MIN &amp; MAX</title>
    <link>https://SQL2Ecto.org/blog/MIN and MAX</link>
    <description>The `MAX` and `MIN` are used to get the maximum and minimum values of a  column which value can be numerical, chasracter string, or dates.</description>
    <pubDate>Sun, 15 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/AVG</guid>
    <title>AVG</title>
    <link>https://SQL2Ecto.org/blog/AVG</link>
    <description>The `AVG` is used to find out the average of a column. It is only used on numerical values.</description>
    <pubDate>Sat, 14 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/GROUP BY</guid>
    <title>GROUP BY</title>
    <link>https://SQL2Ecto.org/blog/GROUP BY</link>
    <description>The `GROUP BY` command is used to group rows with the same value in a particular column and perform aggregate functions on those grouped rows.</description>
    <pubDate>Fri, 13 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/HAVING</guid>
    <title>HAVING</title>
    <link>https://SQL2Ecto.org/blog/HAVING</link>
    <description>The `HAVING` command is used to perform aggregate functions such as `AVG`,`COUNT`, and `MAX`  in a `group_by`.</description>
    <pubDate>Thu, 12 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/DISTINCT</guid>
    <title>DISTINCT</title>
    <link>https://SQL2Ecto.org/blog/DISTINCT</link>
    <description>The `distinct` command is used to get unique values from any columns in a table.</description>
    <pubDate>Wed, 11 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/JOIN</guid>
    <title>JOIN</title>
    <link>https://SQL2Ecto.org/blog/JOIN</link>
    <description>The `join/inner join` command is used to join multiple tables based on a particular column. Tables can be joined using the same column that the tables share. There are four types of `join`.</description>
    <pubDate>Tue, 10 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/OUTER JOIN</guid>
    <title>OUTER JOIN</title>
    <link>https://SQL2Ecto.org/blog/OUTER JOIN</link>
    <description>`OUTER JOIN` includes four types, `RIGHT OUTER JOIN`, `LEFT OUTER JOIN`, `FULL OUTER JOIN`</description>
    <pubDate>Mon, 09 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/LEFT JOIN</guid>
    <title>LEFT JOIN</title>
    <link>https://SQL2Ecto.org/blog/LEFT JOIN</link>
    <description>The `left join` command returns all rows from the left table and only the matching rows from the right.</description>
    <pubDate>Sun, 08 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/RIGHT JOIN</guid>
    <title>RIGHT JOIN</title>
    <link>https://SQL2Ecto.org/blog/RIGHT JOIN</link>
    <description>The `right join` command returns all rows from the right table and only the  matching rows from the left table.</description>
    <pubDate>Sat, 07 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/Filtering in JOIN</guid>
    <title>Filtering in JOIN</title>
    <link>https://SQL2Ecto.org/blog/Filtering in JOIN</link>
    <description>You can use `where`, `and` in a `join` to filter your table.</description>
    <pubDate>Fri, 06 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/FULL OUTER JOIN</guid>
    <title>FULL OUTER JOIN</title>
    <link>https://SQL2Ecto.org/blog/FULL OUTER JOIN</link>
    <description>A `full outer join` will return unmatched and matched values from both tables.</description>
    <pubDate>Thu, 05 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/UNION OPERATOR</guid>
    <title>UNION Operator</title>
    <link>https://SQL2Ecto.org/blog/UNION OPERATOR</link>
    <description>The `union` command is used to do multiple queries at once. By using `union`,  Both queries will return a single table.</description>
    <pubDate>Wed, 04 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

  <item>
    <guid>https://SQL2Ecto.org/blog/SELF JOIN</guid>
    <title>SELF Join</title>
    <link>https://SQL2Ecto.org/blog/SELF JOIN</link>
    <description>The `SELF JOIN` command, used to join the same table with it&#39;s own table based on the queries.</description>
    <pubDate>Tue, 03 Dec 0999 00:00:00 GMT</pubDate>
    <author>talamsupport@auroville.org.in (Shardul)</author>
    
  </item>

    </channel>
  </rss>
