<?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: Maruf Ahmed🧢</title>
    <description>The latest articles on DEV Community by Maruf Ahmed🧢 (@marufahmed).</description>
    <link>https://dev.to/marufahmed</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%2F635278%2Fc505d7c1-7d32-4e53-91e5-a044f6fecfe5.png</url>
      <title>DEV Community: Maruf Ahmed🧢</title>
      <link>https://dev.to/marufahmed</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/marufahmed"/>
    <language>en</language>
    <item>
      <title>1075. Project Employees I</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Tue, 31 Oct 2023 18:46:41 +0000</pubDate>
      <link>https://dev.to/marufahmed/1075-project-employees-i-41bf</link>
      <guid>https://dev.to/marufahmed/1075-project-employees-i-41bf</guid>
      <description>&lt;p&gt;&lt;code&gt;select project_id&lt;br&gt;
,cast(round(sum(experience_years)*1.0/count(project_id),2) as float) as average_years &lt;br&gt;
from Project p&lt;br&gt;
join Employee e&lt;br&gt;
on p.employee_id = e.employee_id&lt;br&gt;
group by project_id&lt;/code&gt;&lt;/p&gt;

</description>
      <category>leetcode</category>
      <category>sql</category>
      <category>programming</category>
      <category>challenge</category>
    </item>
    <item>
      <title>Spring Boot Relationship</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Sat, 12 Aug 2023 18:44:33 +0000</pubDate>
      <link>https://dev.to/marufahmed/spring-boot-relationship-49d5</link>
      <guid>https://dev.to/marufahmed/spring-boot-relationship-49d5</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/maruf409/Spring_Boot_All_Type_Of_Mapping.git"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

</description>
      <category>springboot</category>
      <category>java</category>
      <category>jpa</category>
      <category>database</category>
    </item>
    <item>
      <title>https://github.com/maruf409/leetcode-sql-solution.git</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Tue, 09 Aug 2022 06:36:51 +0000</pubDate>
      <link>https://dev.to/marufahmed/httpsgithubcommaruf409leetcode-sql-solutiongit-2nb7</link>
      <guid>https://dev.to/marufahmed/httpsgithubcommaruf409leetcode-sql-solutiongit-2nb7</guid>
      <description>&lt;p&gt;&lt;a href="https://github.com/maruf409/leetcode-sql-solution.git"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;`                      solution-1&lt;/p&gt;

&lt;p&gt;SELECT a.activity_date, COUNT(user_id)&lt;br&gt;
FROM (&lt;br&gt;
    SELECT activity_date,user_id&lt;br&gt;
    FROM S_leetcode.Activity&lt;br&gt;
    GROUP BY activity_date,user_id&lt;br&gt;
    HAVING  (activity_date &amp;gt;= '2019-06-28') AND (activity_date &amp;lt; '2019-08-25')&lt;br&gt;
) AS a&lt;br&gt;
GROUP BY a.activity_date&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    solution-2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;select abc.activity_date,count(abc.user_id)&lt;br&gt;
from (SELECT distinct activity_date,user_id FROM test.test2) as abc&lt;br&gt;
group by activity_date order by 1&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                    solution-3
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;SELECT activity_date, user_id INTO #temp&lt;br&gt;
FROM S_leetcode.Activity&lt;br&gt;
GROUP BY activity_date, user_id&lt;br&gt;
GO&lt;br&gt;
SELECT *&lt;br&gt;
FROM #temp&lt;/p&gt;

&lt;p&gt;SELECT activity_date, COUNT(activity_date)&lt;br&gt;
FROM #temp&lt;br&gt;
GROUP BY activity_date&lt;br&gt;
`&lt;/p&gt;

</description>
      <category>leetcode</category>
      <category>sql</category>
      <category>mssql</category>
      <category>coding</category>
    </item>
    <item>
      <title>https://www.hackerrank.com/certificates/1743011fedd6</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Mon, 08 Aug 2022 19:49:48 +0000</pubDate>
      <link>https://dev.to/marufahmed/httpswwwhackerrankcomcertificates1743011fedd6-328h</link>
      <guid>https://dev.to/marufahmed/httpswwwhackerrankcomcertificates1743011fedd6-328h</guid>
      <description></description>
      <category>hackerrank</category>
      <category>programming</category>
      <category>sql</category>
    </item>
    <item>
      <title>https://github.com/maruf409/find-duplicate-column-in-same-table</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Sat, 16 Jul 2022 11:10:38 +0000</pubDate>
      <link>https://dev.to/marufahmed/httpsgithubcommaruf409find-duplicate-column-in-same-table-mgo</link>
      <guid>https://dev.to/marufahmed/httpsgithubcommaruf409find-duplicate-column-in-same-table-mgo</guid>
      <description></description>
      <category>sql</category>
      <category>programming</category>
      <category>database</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>my first project using Javascript ,https://github.com/maruf409/Distance-Converter-using-JS.git</title>
      <dc:creator>Maruf Ahmed🧢</dc:creator>
      <pubDate>Fri, 17 Dec 2021 14:44:33 +0000</pubDate>
      <link>https://dev.to/marufahmed/my-first-project-using-javascript-httpsgithubcommaruf409distance-converter-using-jsgit-50kf</link>
      <guid>https://dev.to/marufahmed/my-first-project-using-javascript-httpsgithubcommaruf409distance-converter-using-jsgit-50kf</guid>
      <description></description>
      <category>javascript</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>html</category>
    </item>
  </channel>
</rss>
