<?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: Mohammad Meezan</title>
    <description>The latest articles on DEV Community by Mohammad Meezan (@mohammad_meezan).</description>
    <link>https://dev.to/mohammad_meezan</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%2F3944463%2F2f65f8af-3f66-4a4a-a709-ade09f335c8c.png</url>
      <title>DEV Community: Mohammad Meezan</title>
      <link>https://dev.to/mohammad_meezan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mohammad_meezan"/>
    <language>en</language>
    <item>
      <title>My first SQL interaction</title>
      <dc:creator>Mohammad Meezan</dc:creator>
      <pubDate>Tue, 30 Jun 2026 19:37:49 +0000</pubDate>
      <link>https://dev.to/mohammad_meezan/my-first-sql-interaction-nkd</link>
      <guid>https://dev.to/mohammad_meezan/my-first-sql-interaction-nkd</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Today was my first day of learning SQL and my interaction with it was very unique its not like excel its different.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;First I learned that database is a collection of data.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then I learned about two types of database.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Relational Database:Data is stored in the form of rows and columns in it.MySQL,PostgreSQL etc are some examples.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.NoSQL Database:Data is stored in non tabular form such as json files,documents etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Then I studied about the CRUD operations in SQL using various SQL commands.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;1.SHOW DATABASE:To show the databases lying in my sql application.&lt;br&gt;
2.CREATE DATABASE:To create a new database in my sql application.&lt;br&gt;
3.USE:After creating the database I used this command to use the database I created.&lt;br&gt;
4.SELECT DATABASE():Then I used this command to know whether the database I created is selected or not for doing further operations.&lt;br&gt;
5.CREATE TABLE:I used this command to create a table inside my database.And I also added which datatype will be added in given details.And I also added NOT NULL command,so that my entries would not get any null values.&lt;br&gt;
6.DESC:This command I used to get the description of table.&lt;br&gt;
7.INSERT INTO:Then I used this command to insert the specific details of each features in the column.&lt;br&gt;
8.SELECT:This command is use to retreive rows of data from the table I created.&lt;br&gt;
9.FROM:This command is use to specify the tables from which you want to retrieve or delete the data.&lt;br&gt;
10.UPDATE:This command is use to update the details inside the table in MySQL.&lt;br&gt;
11.DELETE:It is use to delete specific feature inside the table in MySQL.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The issues that I encountered and how I fixed it&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;1.While running the create table command it told my you have a syntax error then I saw that a comma(,) is missing after filling the datatype of EID then I put the comma and my command ran.&lt;/p&gt;

&lt;p&gt;2.I was not able to implement the INSERT INTO command then I saw that in the varchar datatype inputs I forgot to put quotation marks then I put the quotation marks and my command ran properly.&lt;/p&gt;

&lt;p&gt;And in this way I learned SQL and solved the issues I encountered today.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>codenewbie</category>
      <category>database</category>
      <category>sql</category>
    </item>
    <item>
      <title>My 3rd excel project</title>
      <dc:creator>Mohammad Meezan</dc:creator>
      <pubDate>Sun, 21 Jun 2026 20:52:59 +0000</pubDate>
      <link>https://dev.to/mohammad_meezan/my-3rd-excel-project-41n0</link>
      <guid>https://dev.to/mohammad_meezan/my-3rd-excel-project-41n0</guid>
      <description>&lt;ul&gt;
&lt;li&gt;I picked up a random dataset of amazon book sales of 10 years from kaggle and started exploring and analysing it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;1.Data Cleaning&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;At first I opened my dataset in power query and found there were many duplicate values in my book name section then I removed the duplicates.Then I found in the price section there was some 0 values so the price of book can't be zero so I took the mean of the price array and replaced all zeroes with mean to make my analysis better and then I loaded my data and started to analyse it.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;2.Data Analysing&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I did various analysis using pivot tables and some excel function.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;1.Year wise sales analysis:In this analysis I found in which year the sales was high in the first few years then it started droping down and as the sales goes down also the moeny generation goes down.&lt;/p&gt;

&lt;p&gt;2.Genre analysis:In this analysis I found highest no of boos that sold were non fiction over the last 10 years while the difference in the no of books between the fiction and non fiction books is of just 31.&lt;/p&gt;

&lt;p&gt;3.User rating analysis:In this analysis I found the books below 4.3 rating are sold less as compared to books above 4.2 ratings.Books above 4.2 are sold in highest amount.Only 22 books were sold in past 10 years of below 4.3 rating while 329 books above 4.2 rating were sold in past 10 years.&lt;/p&gt;

&lt;p&gt;4.Reviews analysis:In this analysis I learned two new functions and I found the insight that the book that got the highest number of reviews by people is Where the crawdads sing and the no of reviews it got is 87841.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The two new functions I learned was match and index.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At first I tried to implement the vlookup function but vlookup function can only look from right to left not from left to right and I had to look from right to left then I used the match function.At first I calculated the maximum value in reviews section using max function.Then I got 87841 as result then I implemented match function to know in which row 87841 lies then I found it lies in the 344 row and then I used index function to analyse in the 344 row which book is lying in the name of book section then I found it is the book Where the crawdads sing.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The important decisions the business owner should take is:&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;1.He should bring more stocks of books above the rating of 4.3 cause the books above these ratings are highly sold.&lt;/p&gt;

&lt;p&gt;2.He should sell more non fiction books than fiction books but he should also keep fiction books in a good amount cause there is just a difference of 31 books.&lt;/p&gt;

&lt;p&gt;3.He should also bring Where the crawdads sing in higher numbers cause its reviews are also high and its also rated 4.8.&lt;/p&gt;

&lt;p&gt;And here my analysis got completed.&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>datascience</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
    <item>
      <title>My first data analytics projects</title>
      <dc:creator>Mohammad Meezan</dc:creator>
      <pubDate>Wed, 10 Jun 2026 19:44:44 +0000</pubDate>
      <link>https://dev.to/mohammad_meezan/my-first-data-analytics-projects-1ejh</link>
      <guid>https://dev.to/mohammad_meezan/my-first-data-analytics-projects-1ejh</guid>
      <description>&lt;p&gt;Today I got hands on my first data analytics project which was a healthcare dataset.&lt;/p&gt;

&lt;p&gt;First I got the dataset and then I did the following steps.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;I understood the data first as It was a healthcare data there was given name of patients,number of patients,their disease,their medication,their blood groups etc.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;2.Then I uploaded the data in the power query to clean the data in power query I found in the gender category there was 3 options given as male,female and m where I replaced value m as male.In the bloodtype feature I found very inconsistency where there was O- and O-ve both were present even every blood type was like that so I replaced the value O-ve to O- and I did the same process for all blood types.I also corrected the alphabetical writing of medical condition by transforming them to capitalize each word cause I found alphabetical inconsitency in them,then in billing amount I found an error in the data where I remember the number it was written as 6452O which I replaced it with 64520 cause O is an alphabet.Even in the admission type there was two same like options which was emergency and emer then I replaced the values emer with emergency.Even I added an conditional column which was an age bucket column where the condition was if the person is below 30 consider him/her as young and if below 60 consider as middle and if these two conditions are not fulfilling then consider as senior.And then my data got cleaned and prepared.&lt;/p&gt;

&lt;p&gt;3.Then I did the analysis using pivot tables and here is the analysis:&lt;/p&gt;

&lt;p&gt;1.Admission type analysis:In this analysis I analyse the no of patients admitted on the basis of elective,emergency and urgent.And I found highest no of patients were admitted in emergency in the hospital and even I analysed the average billing amount in the above 3 scenarios and found the patients in emergency had more average billing amount as compared to elective and urgent.&lt;/p&gt;

&lt;p&gt;2.Age bucket anlysis:Here is analysed the no of patients based upon the age bucket factor and found middle aged people were the most who were admitted into the hospital but I also analysed the average billing amount among these age groups and found senior patients have highest average billing amount this means the cost of treating the seniors is bit high as compared to young and middle ages.Even I also used filter you can see in my excel sheet.&lt;/p&gt;

&lt;p&gt;3.Insurance provider analysis:Here I analysed how many patients has took the medical insurance of the 5 companies Aetna,Blue cross,Cigna,Medicare and United healthcare and found most of the patients took the insurance medicare but the average billing amount of the patients of Cigna was highest.I also filtered the insurance patients on the basis of their medical condition and age bucket.&lt;/p&gt;

&lt;p&gt;4.Medication analysis:Here I analysed the number of patients taking 5 different medications and found most patients were taking penicilin but found the average billing amount was higher for patient who was taking lipitor medication.I also used the filter on the basis of medical condition you can see it in my excel sheet.&lt;/p&gt;

&lt;p&gt;5.Bloodtype analysis:Here I analysed the no of patients on the basis of bloodtype and found patients with AB- bloodtype were the highest.I also filtered the bloodtype count of patients on the basis of medical condition.&lt;/p&gt;

&lt;p&gt;6.Gender analysis:Here I analysed the no of patients on the basis of male and female and found female were the most who were admitted into the hosiptal.I also used the filter of medical condition to find the number of males and females admitted with specific disease.Even I filtered it with age to determine no male and females in specific age groups.&lt;/p&gt;

&lt;p&gt;7.Test result analysis:Here I analysed the no of patients on the basis of their results after treatment and found most of the patients was abnormal after treatment.I also filtered it on the basis of medication to know the condition of patients of specific diseases after treatment.&lt;/p&gt;

&lt;p&gt;And in this way I finished my first excel project.&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>beginners</category>
      <category>data</category>
      <category>datascience</category>
    </item>
    <item>
      <title>First week of learning data analytics.</title>
      <dc:creator>Mohammad Meezan</dc:creator>
      <pubDate>Wed, 27 May 2026 14:45:29 +0000</pubDate>
      <link>https://dev.to/mohammad_meezan/first-week-of-learning-data-analytics-15e4</link>
      <guid>https://dev.to/mohammad_meezan/first-week-of-learning-data-analytics-15e4</guid>
      <description>&lt;p&gt;1.Exact-Use to identify that is there any two identical data in two different strings.&lt;/p&gt;

&lt;p&gt;2.Trim-Use to adjust text function in proper way inside a string.&lt;/p&gt;

&lt;p&gt;3.Sort-Use to adjust the given set of numeric data in ascending order.&lt;/p&gt;

&lt;p&gt;4.Text-Use to convert numeric data into textual data.&lt;/p&gt;

&lt;p&gt;5.Value-Use to convert textual data into numeric data.&lt;/p&gt;

&lt;p&gt;6.Concatenate-Use to merge two data in two different strings into one in a particular string&lt;/p&gt;

&lt;p&gt;7.Upper-Use to convert textual data into capital letters.&lt;/p&gt;

&lt;p&gt;8.Lower-Use to convert textual data into small letters.&lt;/p&gt;

&lt;p&gt;9.Proper-Use to convert textual data in proper alphabetical way.&lt;/p&gt;

&lt;p&gt;10.Len-Use to find the length of data in a string.&lt;/p&gt;

&lt;p&gt;11.Right-Use to eliminate left portion of the data in a string.&lt;/p&gt;

&lt;p&gt;12.Left-Use to eliminate right portion of the data in a string.&lt;/p&gt;

&lt;p&gt;13.Today-Use to find the current date.&lt;/p&gt;

&lt;p&gt;14 Now-Use to find current date and time.&lt;/p&gt;

&lt;p&gt;15.Day-Use to find the date from Date/Month/Year.&lt;/p&gt;

&lt;p&gt;16.Month-Use to find the month from Date/Month/Year.&lt;/p&gt;

&lt;p&gt;17.Year-Use to find the year from Date/Month/Year.&lt;/p&gt;

&lt;p&gt;18.Edate-Use to add month in Date/Month/Year.&lt;/p&gt;

&lt;p&gt;19.Vlookup-Use to look for a certain value in the given table of the given data set.&lt;/p&gt;

&lt;p&gt;Issues that I encountered while learning.&lt;br&gt;
The first Issue that I faced while learning exact function.I was facing difficulty while implementing the exact function then I checked the formula where I mistakenly used colon symbol instead of coma symbol and my issue got fixed&lt;/p&gt;

&lt;p&gt;=Exact(A1:A2) to =Exact(A1,A2)&lt;/p&gt;

&lt;p&gt;The second issue I faced was while implementing vlookup function I was not able to get my desired value I got a value from different column,then I checked the formula and I mistakenly written the wrong column.Then I corrected my column index no and my issue got fixed.&lt;/p&gt;

&lt;p&gt;My learnings&lt;br&gt;
The most important thing I learned is to fill correct values inside the excel formula to get your desired result.&lt;/p&gt;

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