1) Install the Beautiful Soup python library. What commands did you use? 2) Install the Mariadb mysql server. What com

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899604
Joined: Mon Aug 02, 2021 8:13 am

1) Install the Beautiful Soup python library. What commands did you use? 2) Install the Mariadb mysql server. What com

Post by answerhappygod »

1) Install the Beautiful Soup python library. What
commands did you use?
2) Install the Mariadb mysql server. What commands did you
use?
3) Using your Mariadb mysql database, create a database and
table that you can query to display the number of babies born each
year that had your name. So you should be able to run
something like:
select * from babynames where name = "Mark" and sex = "M" order
by year;
and get results something like:
('MD', 'M', 1917, 'Mark', 7)
('MD', 'M', 1919, 'Mark', 9)
('MD', 'M', 1920, 'Mark', 10)
. . .
('MD', 'M', 2018, 'Mark', 34)
('MD', 'M', 2019, 'Mark', 22)
('MD', 'M', 2020, 'Mark', 21)
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply