by Trevor Fox

Learn SQL, Python, or JavaScript in 2019: The Savvy Digital Marketer’s Guide

67ehcntXsHQzNm6e9UroliBwH0TFueIyVjrB
Photo by rawpixel on Unsplash

The answer is “Yes.” You’ve gotten this far, and you’re in a good place. You’re ready to take the first bold step toward building a valuable new skill and even better: achieving IT independence. No matter what you choose, as long as you move forward, you’ll be thanking yourself in no time.

I started learning to code six years ago after a failed professional baseball career, and I maintain that it was one of the best decisions I’ve ever made. At the time I was working at a web agency as a digital marketing generalist. I would find myself hacking spreadsheets to death until they resembled the automation I was looking for or running into dead ends when I found myself staring into small text areas that would allow me to customize some bit of code in a CMS.

Ahy7c-JOIZrlmRJyxjhGdaXFy8YSNcpCquze

I was surprised and grateful for how rapidly I was able to apply what I learned. That’s what I want to help you with today.

I started with Javascript, moved to Python, and finally to SQL. I followed this path because of the framework I outline below. For the most part, though, there is no wrong answer. Learning how code works — as a set of instructions that tell a computer how you want it to operate — is pretty universal. Learning a scripting language will help you learn others, and the same is true for query languages like SQL. So don’t worry, switching costs are low and the only time wasted is the time waiting to get started.

To get the most out of your learning path, the value is all about applicability. So the first question is, what problem do you want to solve with code? Necessity is a strong motivator and will keep you focused. Starting with an end in sight is the right way to go.

Application: What problems do you face?

Each of these programming languages was initially purposed to solve a particular problem. For Javascript, it was running applications in a browser; for Python, it was actually systems administrations, and for SQL it was for querying relational data sets.

Today, Javascript and Python have evolved far beyond their origins into everything from web applications to embedded hardware. SQL is well… still a very specialized (but very useful) programming language.

Though the applications have broadened, each programming language has more immediate value in some domains than others. And you will be more motivated to learn if you know you have a good problem to solve.

I am looking at this from the standpoint of a digital marketer or digital analyst who depends on data to be successful at their job — because that is where these programming languages will be immediately valuable. So consider your access to data:

  1. Do you have access to a relational database?
  2. Do you need to access, interpret, manipulate, and move data?
  3. Do you need to track website analytics?

A Case For SQL

If you said “Yes” to 1 and “No” to the others, then the answer is easy: learn SQL. Not everybody is working in an environment that they can use a data warehouse for analysis (even though it is easier than ever to set up a data warehouse) so if you are you find yourself repeatedly exporting lists from marketing or e-commerce or applications asking IT, a DBA, or engineers to get data out of a database or data warehouse for your analysis, hurry up and learn SQL! You’ll thank me in a few short weeks.

I recommend Duke’s SQL class on Coursera to go from zero to usable SQL skill in a less than two months. With that class and a couple books about PostgreSQL, I learned enough to record this demo with ad network data.

There are even good Android/iPhone apps that will help you learn the syntax through repetition. The class I recommend below (Data Manipulation at Scale: Systems and Algorithms) for Python also touches on SQL so it’s a double whammy and Python Anywhere also features hosted MySQL, so that’s a double-double whammy!

The decision between Python and Javascript is a bit stickier. These are two of the most popular programming languages in the world, and both have tons of great resources to go into any depth that you want — mostly for free!

A Case for Python

If you said “Yes” to 2, I would recommend Python. It is straightforward to learn and provides a great foundation for learning ANY programming language. You can use it to access and interact with API’s which can substantially increase the scale of your marketing activities. For instance, Facebook has an API for Facebook ads what allows you to create and manage campaigns programmatically. That is like a magic wand for marketing!

BUT you will find that you have to learn more than just the basics to do anything that interesting. Python runs on your computer or a server, so you have to learn how to run the code on top of how to write the code.

If you are ready to set your mind to it and head down that path, I recommend starting with Udacity’s Introduction to Python Programming, It is perfect for digital marketers because it introduces the concept of, and teaches you to build a very simple web crawler (think Googlebot). After that, Coursera’s Data Manipulation at Scale: Systems and Algorithms (Week 1) shows you how to do Tweet by accessing the Twitter API with Python. Fun (and scary) stuff!

When you want to try some practical stuff, check out Automate the Boring Stuff for interesting projects you can do on your computer, or Python Anywhere or AWS Lambda to get started running Python in the cloud!

The quickest way to apply Python toward digital marketing is to use JuPyteR for data analysis, but that still has a bit of a learning curve so beware. Python for Data Analysis is a great way to get started in that direction.

A Case for Javascript

If you said “Yes” to 3 and you are a logic whizz, then you guessed it, learn Javascript. While Javascript can be used to make a lot of interesting web apps, (I finally made handy app with D3 for keyword research) it can also be useful within a few weeks if you want to set up or enhance Google Analytics on a website.

Most CMS’s make it pretty easy to edit at least some Javascript code, and Google Tag Manager makes it possible to insert Javascript code for tracking. Javascript is also how A/B testing tools like Optimizely and Google Optimize change the layout of a webpage. If you run a Google Ads account, you can even use Javascript to update and maintain your ads programmatically. Did you know Google Apps Script uses Javascript!?

Just because it might be easier to start seeing the benefits of learning to code with Javascript does not mean it is an easier language to learn in general. Between callbacks, Javascript’s version of Object Oriented Programming, and the zillions of libraries, versions, and frameworks, there can be some rough patches, but sticking with it will help you understand how the browsers and the web work. That will completely change your world!

I learned, like really learned, Javascript fundamentals on freeCodeCamp and I was able to apply it before I finished the first certification. I don’t need to tell you how to navigate your interest in Javascript; their curriculum does a great job of that. I would only add that checking out Javascript the Good Parts videos will speed up your understanding of the Javascript world.

Happy 2019!

I hope that at the end of this year you will look back on your accomplishments and be proud of your commitment and the applicable, career-growing skills you’ve acquired. If you want to learn more about web fundamentals for digital marketing check out the open source guide. If you have more to share, please contribute. Good luck, and get started!