SQL Interview Question - Solution (Part - XXVII) |

Описание к видео SQL Interview Question - Solution (Part - XXVII) |

#dataanalyst #sqlfordataengineer #education #dataanalytics

Here are My profiles that will definitely help your preparation for data analyst or data engineer roles.
Medium:   / mahendraee204  
Github: https://github.com/mahendra204

Table Create and insert statements:
----------------------------------------------------------
create table route_distance (
source varchar(20),
destination varchar(20),
distance int
);

insert into route_distance values ('a', 'b', 30),('b', 'd', 70),('b', 'a', 30),('d', 'b', 60),
('c', 'a', 50),('a', 'c', 50),('c', 'd', 60),('d', 'c', 60)

Комментарии

Информация по комментариям в разработке