<?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: Michael Breshock</title>
    <description>The latest articles on DEV Community by Michael Breshock (@mbreshock).</description>
    <link>https://dev.to/mbreshock</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%2F2589485%2F0fd7ce82-ec4a-49ea-8dbe-2262b8c79394.jpeg</url>
      <title>DEV Community: Michael Breshock</title>
      <link>https://dev.to/mbreshock</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mbreshock"/>
    <language>en</language>
    <item>
      <title>SQL Tables for Marvel Rivals Characters + Team-Up Abilities</title>
      <dc:creator>Michael Breshock</dc:creator>
      <pubDate>Mon, 13 Jan 2025 08:18:39 +0000</pubDate>
      <link>https://dev.to/mbreshock/sql-tables-for-marvel-rivals-characters-team-up-abilities-32fb</link>
      <guid>https://dev.to/mbreshock/sql-tables-for-marvel-rivals-characters-team-up-abilities-32fb</guid>
      <description>&lt;h2&gt;
  
  
  Happy New Year!✨
&lt;/h2&gt;

&lt;p&gt;To start off the year strong, I'm learning SQL through a &lt;a href="https://en.khanacademy.org/computing/computer-programming/sql" rel="noopener noreferrer"&gt;Khan Academy course&lt;/a&gt;. I was tasked with creating tables of 'famous' people for a project. I decided to make it more fun for myself by creating tables about &lt;a href="https://www.marvelrivals.com/" rel="noopener noreferrer"&gt;Marvel Rivals&lt;/a&gt;, a video game released recently that has taken the world by storm, myself included. I know I'm not the only data nerd that likes to game in their downtime, so I thought I'd share the SQL code I wrote in case it could be of use.😊&lt;/p&gt;

&lt;p&gt;I constructed two tables. The first has every playable character in the game listed in each row, along with their role, difficulty, HP, and affiliation. The second table represents all of the different team-up abilities possible by combining characters 2-3 from the first table. The tables consist of the following columns: &lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;heroes&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;| hero_id | name | role | hp | difficulty | affiliation |&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;team_ups&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;| id | combo_name | activator_id | party1_id | party2_id |&lt;/p&gt;

&lt;p&gt;The SQL code to generate these tables can be found on GitHub at &lt;a href="https://github.com/mbreshock/MarvelRivalsDB/blob/main/rivals.sql" rel="noopener noreferrer"&gt;github.com/mbreshock/MarvelRivalsDB/blob/main/rivals.sql&lt;/a&gt;. This repository also provides a script with &lt;a href="https://github.com/mbreshock/MarvelRivalsDB/blob/main/query_example.sql" rel="noopener noreferrer"&gt;example commands&lt;/a&gt; for querying these tables. All of the information in these tables was sourced from &lt;a href="https://marvelrivals.fandom.com/wiki/Heroes" rel="noopener noreferrer"&gt;Marvel Rivals Wiki&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;
  
  
  Happy coding and happy gaming!👾
&lt;/h4&gt;

</description>
      <category>sql</category>
      <category>database</category>
      <category>learning</category>
      <category>github</category>
    </item>
  </channel>
</rss>
