Featured Post

SQL Interview Success: Unlocking the Top 5 Frequently Asked Queries

Image
 Here are the five top commonly asked SQL queries in the interviews. These you can expect in Data Analyst, or, Data Engineer interviews. Top SQL Queries for Interviews 01. Joins The commonly asked question pertains to providing two tables, determining the number of rows that will return on various join types, and the resultant. Table1 -------- id ---- 1 1 2 3 Table2 -------- id ---- 1 3 1 NULL Output ------- Inner join --------------- 5 rows will return The result will be: =============== 1  1 1   1 1   1 1    1 3    3 02. Substring and Concat Here, we need to write an SQL query to make the upper case of the first letter and the small case of the remaining letter. Table1 ------ ename ===== raJu venKat kRIshna Solution: ========== SELECT CONCAT(UPPER(SUBSTRING(name, 1, 1)), LOWER(SUBSTRING(name, 2))) AS capitalized_name FROM Table1; 03. Case statement SQL Query ========= SELECT Code1, Code2,      CASE         WHEN Code1 = 'A' AND Code2 = 'AA' THEN "A" | "A

Social Media Career Options

Social Media career
Skill Set for Social Media Jobs
  • Understands social media universe including Facebook, Twitter, Google+, Instagram, Pinterest, YouTube, Vimeo, Yelp, Urbanspoon, TripAdvisor, Company Blogs/Wordpress and more 
  • Able to work effectively in a multi-tasking environment 
  • Excels at research, possesses excellent writing skills and the ability to create editorial and technical writing output quickly 
  • Proficient with Microsoft Office products, or preferably Apple iWork products 
  • Demonstrated creativity and documented immersion in social media 
  • Have excellent verbal and written communication skills and an ability to work individually on a project or in a team environment 
Social media popularity from Udemy
The career options
  • Management of social media
  • Copy writing
  • Design
  • Public speaking
The popular training (#sponsored)


Popular training in social media

The Hot and coldest skills as per dice



The other popular Social media managers
  • Content creation
  • Marketing analytics
  • News junkie
  • Customer service
  • Community management
  • Funnel marketing
  • Project management

Comments

Popular posts from this blog

How to Fix datetime Import Error in Python Quickly

Explained Ideal Structure of Python Class

How to Check Kafka Available Brokers