MySQL Crash Course by Rick Silva
Author:Rick Silva
Language: eng
Format: mobi
ISBN: 9781718503014
Published: 2023-01-10T00:00:00+00:00
Now, the next time you want to get a list of companies with a count of complaints, you can simply type select * from v_complaint instead of rewriting the entire query.
Next, youâll create another view that hides the owner information. Youâll name the view v_complaint_public, and youâll let all users of your database access the view. This view will show the company name and number of complaints, but not the ownerâs name or phone number:
create view v_complaint_public as
select a.company_name,
count(*)
from company a
join complaint b
on a.company_id = b.company_id
group by a.company_name;
Download
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Algorithms of the Intelligent Web by Haralambos Marmanis;Dmitry Babenko(8261)
Azure Data and AI Architect Handbook by Olivier Mertens & Breght Van Baelen(6420)
Building Statistical Models in Python by Huy Hoang Nguyen & Paul N Adams & Stuart J Miller(6380)
Serverless Machine Learning with Amazon Redshift ML by Debu Panda & Phil Bates & Bhanu Pittampally & Sumeet Joshi(6270)
Data Wrangling on AWS by Navnit Shukla | Sankar M | Sam Palani(6045)
Driving Data Quality with Data Contracts by Andrew Jones(6009)
Learning SQL by Alan Beaulieu(5964)
Machine Learning Model Serving Patterns and Best Practices by Md Johirul Islam(5776)
Weapons of Math Destruction by Cathy O'Neil(5725)
Big Data Analysis with Python by Ivan Marin(5183)
Data Engineering with dbt by Roberto Zagni(4208)
Solidity Programming Essentials by Ritesh Modi(3845)
Time Series Analysis with Python Cookbook by Tarek A. Atwan(3695)
Pandas Cookbook by Theodore Petrou(3414)
Blockchain Basics by Daniel Drescher(3277)
Hands-On Machine Learning for Algorithmic Trading by Stefan Jansen(2889)
Feature Store for Machine Learning by Jayanth Kumar M J(2800)
Learn T-SQL Querying by Pam Lahoud & Pedro Lopes(2782)
Mastering Python for Finance by Unknown(2734)
