{"id":6707,"date":"2015-07-15T10:00:00","date_gmt":"2015-07-15T16:00:00","guid":{"rendered":"https:\/\/memberpress.com\/?p=6707"},"modified":"2017-09-20T12:37:32","modified_gmt":"2017-09-20T18:37:32","slug":"real-men-and-women-use-sql","status":"publish","type":"post","link":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/","title":{"rendered":"Real Men and Women use SQL"},"content":{"rendered":"<p>Believe it or not, the headline is quite literal. Real men and women do in fact use SQL. Even if you\u2019re not aware of it, SQL plays a role in your life. Quietly hiding behind the scenes, delivering the information that you need to get through the\u00a0day.<\/p><div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 ez-toc-wrap-center counter-hierarchy ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<label for=\"ez-toc-cssicon-toggle-item-69da13185b9fb\" class=\"ez-toc-cssicon-toggle-label\"><p class=\"ez-toc-title\" style=\"cursor:inherit\">WHAT'S INSIDE<\/p>\n<span class=\"ez-toc-cssicon\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #000000;color:#000000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #000000;color:#000000\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69da13185b9fb\"  \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#W3school\" >W3school<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-3'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#Udemy\" >Udemy<\/a><\/li><\/ul><\/nav><\/div>\n\n<p>It\u2019s unfortunate that SQL gets so little credit for all the work it does. But today we\u2019re going to change that. Today is the day that SQL starts getting the credit it deserves.<\/p>\n<p>In this article, we're going to give you a brief history (really brief, I promise) of SQL and then we're going to jump right into how and where SQL is used. In case I spark an interest, I\u2019ll finish up by providing some resources where you can start learning more.<\/p>\n<h4>A Brief History of SQL<\/h4>\n<p>Depending who you're talking to, you may find SQL (Structured Query Language) referred to by it\u2019s actual letter names or possibly as \u201csequel\u201d. Originally a product of IBM, SQL came about in the 1970s as a result of a problem. IBM needed to find a way of communicating with and manipulating the information found in databases.<\/p>\n<p>Since the 1970s, SQL has become the standard worldwide language used to communicate with relational databases. Before the advent of relational databases, we relied primarily on a more complex model called <a href=\"https:\/\/en.wikipedia.org\/wiki\/Hierarchical_database_model\" target=\"_blank\" rel=\"noopener\">hierarchical<\/a>. I've linked to that term because if we spend too much more time on this topic, I'll have broken my promise.<\/p>\n<p>Let's move on to some more useful\u00a0details.<\/p>\n<h4>What is a Database?<\/h4>\n<p>The simplest definition we can come up with is that a database is an organized collection of data. Imagine taking the name, address, phone number, and zip code of every person who lives in your city and dropping them into a large bucket. But we're going to be more specific about this process. Write the information for each person on a single piece of paper before dropping them into your bucket. Nice work, you now have a bucket that contains thousands of pieces of information.<\/p>\n<p>Now, give your bucket a shake, making sure your pieces of paper are well mixed. That bucket is essentially your database and it\u2019s not unlike the typical database contained on your computer or smartphone.<\/p>\n<p>You can see where we're going with this right? You've now created a small problem. You have a bucket (database) that is full of useful information, but how do you get that information out of the bucket in an efficient manner so that it's usable?<\/p>\n<h4>How is SQL related to Your Database?<\/h4>\n<p>Sticking with our bucket of names and addresses, let\u2019s imagine now that you have an empty phone book that is connected to your bucket. How do you get the information from your bucket \u2013 which is essentially a jumbled mess \u2013 into your phone book in a usable, readable manner? SQL to the rescue.<\/p>\n<p>SQL is the language capable of communicating with your database. It does this by generating what is called a \u201cquery\u201d. For example, show the results for every person in my database who:<\/p>\n<ul>\n<li>Has a last name that begins with the letter A<\/li>\n<li>Has the zip code 785241<\/li>\n<\/ul>\n<p>All of a\u00a0sudden you're now able to begin extracting useful information from your database. You can essentially create any type of query you want and SQL will return the appropriate information to your phone book for you to see.<\/p>\n<p>Over time, your database will grow to contain more names or even additional information \u2013 such as household income. You can continue using SQL to communicate and extract the information you need. SQL will even put the information into the bucket for you.<\/p>\n<h4>A Real World Example<\/h4>\n<p>Most of us will never find ourselves in a position where we're having to create SQL queries directly. But that doesn't mean you're not using a database or SQL. Thankfully, we have programs or apps that do all the heavy lifting\u00a0for us.<\/p>\n<p>The contact manager that you have on your computer is one such application. To make your life easier, the application has what is called a graphical user interface (GUI for short). When you look at your screen, this GUI is what you are seeing. If you were to click on the letter \u201cV\u201d, your application would send a request via SQL to your database saying \u201cI am requesting all of the entries that have a last name starting with the letter V\u201d.<\/p>\n<p>Magically, your contact manager now displays a list of every person in your database with the applicable last name. This is obviously a simplified version, but I think it makes the process a little easier to understand.<\/p>\n<p>There are essentially four actions that your GUI can allow you to perform on your database. They are:<\/p>\n<ol>\n<li><strong>Modify<\/strong> an existing database entry \u2013 your friends address changed.<\/li>\n<li><strong>Insert<\/strong> a new entry into the database \u2013 you made a new friend.<\/li>\n<li><strong>Remove<\/strong> an entry from the database \u2013 you've unfriended someone.<\/li>\n<li><strong>Request<\/strong> information from the database \u2013 you're trying to find the phone number for a specific friend.<\/li>\n<\/ol>\n<p>Although your interactions are limited to these four categories, you still have an amazing amount of power at your fingertips when it comes to manipulating the data.<\/p>\n<h4>Where Can You Learn More?<\/h4>\n<p>Although SQL and database management certainly seems like a dry topic, it\u2019s essential to our daily lives. Without SQL, as a society we could probably turn the clock back at least 40 years. That\u2019s right, back to the days of a <a href=\"https:\/\/en.wikipedia.org\/wiki\/Rolodex\" target=\"_blank\" rel=\"noopener\">Rolodex<\/a>.<\/p>\n<p>If this post has sparked an interest in SQL, there are some great resources available to help you learn more.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"W3school\"><\/span><a href=\"http:\/\/www.w3schools.com\/sql\/default.asp\" target=\"_blank\" rel=\"noopener\">W3school<\/a><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-6986\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools.png\" alt=\"W3Schools\" width=\"740\" height=\"239\" srcset=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools.png 740w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools-300x97.png 300w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools-526x170.png 526w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools-700x226.png 700w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/W3Schools-156x50.png 156w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/><\/p>\n<p>Most have us have referred to W3school for help with CSS and HTML. It just so happens that they have a great resource available for learning about SQL as well. Having said that, it might not be the best resource for beginners. It is fairly direct and does not have examples that are suited to the layperson. If you\u2019re someone who learns visually and auditorily, our next source may be a better fit.<\/p>\n<h3><span class=\"ez-toc-section\" id=\"Udemy\"><\/span><a href=\"https:\/\/www.udemy.com\/courses\/search\/?q=sql\" target=\"_blank\" rel=\"noopener\">Udemy<\/a><span class=\"ez-toc-section-end\"><\/span><\/h3>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-6989\" src=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy.png\" alt=\"Udemy\" width=\"740\" height=\"325\" srcset=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy.png 740w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy-300x132.png 300w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy-387x170.png 387w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy-700x307.png 700w, https:\/\/memberpress.com\/wp-content\/uploads\/2015\/07\/Udemy-156x69.png 156w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/><\/p>\n<p><a href=\"https:\/\/memberpress.com\/go\/udemy\" title=\"Udemy Affiliate Link\" class=\"pretty-link-keyword\"rel=\"nofollow \" target=\"_blank\">Udemy<\/a> offers some great courses that can help you learn more about SQL. There are several free courses available, but the higher quality ones come with a small fee attached. If you\u2019re serious about learning some basic SQL skills, this is where you probably want to be.<\/p>\n<h4>Conclusion<\/h4>\n<p>Hopefully, this post has given you a very basic introduction into what exactly SQL is and how important it is to our lives. If you stop to think about it for just a few seconds, you\u2019ll realize just how much we depend upon data every single day.<\/p>\n<p>Learning to use and manipulate that data is an incredibly valuable skill so if we've sparked an interest, take the time to learn more.<\/p>\n<p><strong>If you've ever used an interface like <a href=\"https:\/\/www.mysql.com\/\" target=\"_blank\" rel=\"noopener\">MySQL<\/a>, please share your experiences in the comments.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Believe it or not, the headline is quite literal. Real men and women do in fact use SQL. Even if you\u2019re not aware of it, SQL plays a role in your life. Quietly hiding behind the scenes, delivering the information that you need to get through the\u00a0day. It\u2019s unfortunate that SQL gets so little credit [\u2026]<\/p>\n","protected":false},"author":2122,"featured_media":15176,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"_strive_editorial_status":"not-started","_strive_copy_of":0,"inline_featured_image":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"content-sidebar","_FSMCFIC_featured_image_caption":"","_FSMCFIC_featured_image_nocaption":"","_FSMCFIC_featured_image_hide":"","_strive_checklists":"\"\"","_strive_active_checklist":"62291e2bb2422","_strive_post_notes":"","footnotes":""},"categories":[120],"tags":[265,264],"class_list":{"0":"post-6707","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-content","8":"tag-learning-resources","9":"tag-sql","10":"entry"},"acf":{"plans":["scale"],"is_featured":false,"download_source":"none","mothership_slug":"","download_url":""},"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.5.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"Learn how important SQL is to our daily lives. We&#039;ll discuss a brief history, cover some practical applications and resources in case you want to learn more.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Joe Fylan\"\/>\n\t<meta name=\"keywords\" content=\"learning resources,sql\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.5.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"pt_BR\" \/>\n\t\t<meta property=\"og:site_name\" content=\"MemberPress\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Real Men and Women use SQL\" \/>\n\t\t<meta property=\"og:description\" content=\"Learn how important SQL is to our daily lives. We&#039;ll discuss a brief history, cover some practical applications and resources in case you want to learn more.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"740\" \/>\n\t\t<meta property=\"og:image:height\" content=\"239\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2015-07-15T16:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2017-09-20T18:37:32+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/memberpress\/\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@memberpress\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Real Men and Women use SQL\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Learn how important SQL is to our daily lives. We&#039;ll discuss a brief history, cover some practical applications and resources in case you want to learn more.\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#blogposting\",\"name\":\"Real Men and Women use SQL\",\"headline\":\"Real Men and Women use SQL\",\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/jfylan\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/MySQL.png\",\"width\":740,\"height\":239},\"datePublished\":\"2015-07-15T10:00:00-04:00\",\"dateModified\":\"2017-09-20T12:37:32-04:00\",\"inLanguage\":\"pt-BR\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#webpage\"},\"articleSection\":\"Content, learning resources, SQL\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/#listItem\",\"name\":\"Membership Site\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/#listItem\",\"position\":2,\"name\":\"Membership Site\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/content\\\/#listItem\",\"name\":\"Content\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/content\\\/#listItem\",\"position\":3,\"name\":\"Content\",\"item\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/content\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#listItem\",\"name\":\"Real Men and Women use SQL\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/#listItem\",\"name\":\"Membership Site\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#listItem\",\"position\":4,\"name\":\"Real Men and Women use SQL\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/category\\\/membership-site\\\/content\\\/#listItem\",\"name\":\"Content\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2022\\\/10\\\/mp-icon-RGB_Icon-01.jpg\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#organizationLogo\",\"width\":1650,\"height\":1275,\"caption\":\"memberpress logo icon\"},\"image\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/memberpress\\\/\",\"https:\\\/\\\/www.pinterest.com\\\/memberpressplugin\\\/\",\"https:\\\/\\\/www.youtube.com\\\/c\\\/MemberPressPlugin\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/memberpress\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/jfylan\\\/#author\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/jfylan\\\/\",\"name\":\"Joe Fylan\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/litespeed\\\/avatar\\\/8efbb5b67aecb906b5f72f49bd070141.jpg?ver=1775748485\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#webpage\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/\",\"name\":\"Real Men and Women use SQL\",\"description\":\"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.\",\"inLanguage\":\"pt-BR\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/jfylan\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/author\\\/jfylan\\\/#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/memberpress.com\\\/wp-content\\\/uploads\\\/2015\\\/11\\\/MySQL.png\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#mainImage\",\"width\":740,\"height\":239},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/blog\\\/real-men-and-women-use-sql\\\/#mainImage\"},\"datePublished\":\"2015-07-15T10:00:00-04:00\",\"dateModified\":\"2017-09-20T12:37:32-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#website\",\"url\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/\",\"name\":\"MemberPress\",\"description\":\"The All-In-One WordPress Membership Plugin\",\"inLanguage\":\"pt-BR\",\"publisher\":{\"@id\":\"https:\\\/\\\/memberpress.com\\\/pt\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>Real Men and Women use SQL<\/title>\n\n","aioseo_head_json":{"title":"Real Men and Women use SQL","description":"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.","canonical_url":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/","robots":"max-image-preview:large","keywords":"learning resources,sql","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#blogposting","name":"Real Men and Women use SQL","headline":"Real Men and Women use SQL","author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/jfylan\/#author"},"publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png","width":740,"height":239},"datePublished":"2015-07-15T10:00:00-04:00","dateModified":"2017-09-20T12:37:32-04:00","inLanguage":"pt-BR","mainEntityOfPage":{"@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#webpage"},"isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#webpage"},"articleSection":"Content, learning resources, SQL"},{"@type":"BreadcrumbList","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","position":1,"name":"Home","item":"https:\/\/memberpress.com\/pt","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/#listItem","name":"Membership Site"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/#listItem","position":2,"name":"Membership Site","item":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/#listItem","name":"Content"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/#listItem","position":3,"name":"Content","item":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/","nextItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#listItem","name":"Real Men and Women use SQL"},"previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/#listItem","name":"Membership Site"}},{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#listItem","position":4,"name":"Real Men and Women use SQL","previousItem":{"@type":"ListItem","@id":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/#listItem","name":"Content"}}]},{"@type":"Organization","@id":"https:\/\/memberpress.com\/pt\/#organization","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","url":"https:\/\/memberpress.com\/pt\/","logo":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2022\/10\/mp-icon-RGB_Icon-01.jpg","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#organizationLogo","width":1650,"height":1275,"caption":"memberpress logo icon"},"image":{"@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/memberpress\/","https:\/\/www.pinterest.com\/memberpressplugin\/","https:\/\/www.youtube.com\/c\/MemberPressPlugin","https:\/\/www.linkedin.com\/company\/memberpress\/"]},{"@type":"Person","@id":"https:\/\/memberpress.com\/pt\/blog\/author\/jfylan\/#author","url":"https:\/\/memberpress.com\/pt\/blog\/author\/jfylan\/","name":"Joe Fylan","image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/litespeed\/avatar\/8efbb5b67aecb906b5f72f49bd070141.jpg?ver=1775748485"}},{"@type":"WebPage","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#webpage","url":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/","name":"Real Men and Women use SQL","description":"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.","inLanguage":"pt-BR","isPartOf":{"@id":"https:\/\/memberpress.com\/pt\/#website"},"breadcrumb":{"@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#breadcrumblist"},"author":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/jfylan\/#author"},"creator":{"@id":"https:\/\/memberpress.com\/pt\/blog\/author\/jfylan\/#author"},"image":{"@type":"ImageObject","url":"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png","@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#mainImage","width":740,"height":239},"primaryImageOfPage":{"@id":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/#mainImage"},"datePublished":"2015-07-15T10:00:00-04:00","dateModified":"2017-09-20T12:37:32-04:00"},{"@type":"WebSite","@id":"https:\/\/memberpress.com\/pt\/#website","url":"https:\/\/memberpress.com\/pt\/","name":"MemberPress","description":"The All-In-One WordPress Membership Plugin","inLanguage":"pt-BR","publisher":{"@id":"https:\/\/memberpress.com\/pt\/#organization"}}]},"og:locale":"pt_BR","og:site_name":"MemberPress","og:type":"article","og:title":"Real Men and Women use SQL","og:description":"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.","og:url":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/","og:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png","og:image:secure_url":"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png","og:image:width":740,"og:image:height":239,"article:published_time":"2015-07-15T16:00:00+00:00","article:modified_time":"2017-09-20T18:37:32+00:00","article:publisher":"https:\/\/www.facebook.com\/memberpress\/","twitter:card":"summary_large_image","twitter:site":"@memberpress","twitter:title":"Real Men and Women use SQL","twitter:description":"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.","twitter:image":"https:\/\/memberpress.com\/wp-content\/uploads\/2015\/11\/MySQL.png"},"aioseo_meta_data":{"post_id":"6707","title":"Real Men and Women use SQL","description":"Learn how important SQL is to our daily lives. We'll discuss a brief history, cover some practical applications and resources in case you want to learn more.","keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2025-10-09 16:33:26","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"open_ai":null,"ai":null,"created":"2020-12-21 16:19:15","updated":"2026-03-03 15:09:09"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/\" title=\"Membership Site\">Membership Site<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/\" title=\"Content\">Content<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tReal Men and Women use SQL\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/memberpress.com\/pt"},{"label":"Membership Site","link":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/"},{"label":"Content","link":"https:\/\/memberpress.com\/pt\/blog\/category\/membership-site\/content\/"},{"label":"Real Men and Women use SQL","link":"https:\/\/memberpress.com\/pt\/blog\/real-men-and-women-use-sql\/"}],"app_bookmark":{"bookmark_id":0,"is_bookmarked":false,"bookmark_date":0},"comments_count":"0","content_native":[],"app_access":{"can_access":true,"restrict_message":null},"_links":{"self":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/posts\/6707","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/users\/2122"}],"replies":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/comments?post=6707"}],"version-history":[{"count":0,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/posts\/6707\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/media\/15176"}],"wp:attachment":[{"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/media?parent=6707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/categories?post=6707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/memberpress.com\/pt\/wp-json\/wp\/v2\/tags?post=6707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}