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

Cloud Case Study Part-2

Present case study is in Health Care:
 
Practo Technologies was formed in year 2008. The vision of the company was to make medical information digitally accessible to patients and doctors. With all these features at pleasing price, solutions providers like Practo aimed to create the most efficient healthcare experience for people in India and gradually around the world.


The aim was to improve the patient experience for finding and meeting a doctor.

 
Traditionally the healthcare records were created manually and stored on shelves. Managing of records stored in files traditionally was of not much use. With the evolution of technology, there has been a paradigm shift in the manner the healthcare industry functions.
 
The medical records are electronically stored and managed. With the acceptance of cloud computing the healthcare patient data is stored at a remote server location on the internet.
 
The following companies offering CLOUD based health care Service:
 
Practo Ray
 
It is a cloud based flagship product that allows patients to search for doctors and book their appointment online. The dedicated online platform for health professionals and intelligent system that lets users know when the doctor is available. The user friendly and effective practice management software supports online appointment booking, electronic medical records (EMR) and enables effective clinic-patient communication.
Practo Hello:
 
It is the first automated call based software that enables patients to call and book their appointment instantly. The automated voice service responds to the calls made by the patients to book an appointment. The Interactive Voice Response System (IVRS) solution for doctors lets them manage the phone calls made to their clinics and access call recordings while ensuring that no call goes unanswered.
Practo Group
 
It is an online collaborative platform dedicated to healthcare community. The online forum enables healthcare professionals to share views, meet other members and promote their health events. The group service enabled collaboration among like-minded healthcare fraternity.

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