Question: Fix Queries and Join Tables 1. List client number, client name, consultant last name and consultant first name of each client from city Lizton. SELECT

Fix Queries and Join Tables

1. List client number, client name, consultant last name and consultant first name of each client from city Lizton.

SELECT ClientNum, ClientName, LastName, FirstName FROM Client, Consultant WHERE City='Lizton';

2. List client number, client name, consultant last name and consultant first name of each client with a credit limit equal to 7500.

SELECT ClientNum, ClientName, LastName, FirstName FROM Client, Consultant WHERE CreditLimit = 7,500;

3.)List client number, client name, balance, and consultant last name of each client with a balance exceeding credit limit.

SELECT ClientNum, ClientNum, Balance, LastName FROM Client, Consultant WHERE Client.Balance > Client.CreditLimit

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!