answer please | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

answer please

Fill in the blanks to select item names and names of customers who bought the items. Use custom names to shorten the statement. SELECT ct.name, .name FROM customers ct, items AS it WHERE it.seller_id= .id;

9th Jul 2017, 5:40 PM
Tirth Luhar
Tirth Luhar - avatar
14 Answers
+ 4
SQL course would help you. select ct.name, it.name --> custom name for item's table from costumers AS ct, ----> assign custom name join items as it on it.seller = ct.id // the where clausule can help to filter the costumer or the item
9th Jul 2017, 6:07 PM
luis sanchez
luis sanchez - avatar
+ 2
Thanks
5th Jul 2020, 6:15 AM
Faith Mundi
Faith Mundi - avatar
+ 2
answer please Indexing & Slicing Conditions Fill in the blanks to select all rows which have rank > 10 or type equal to 42: df[(df['rank']>10) | (df[' ****** ']==42)] what is for *******
1st May 2021, 6:32 PM
Indika Bandara
Indika Bandara - avatar
+ 1
SELECT ct.name, .name FROM customers ct, items AS it WHERE it.seller_id= .id; ans it as ct
2nd Mar 2018, 2:54 PM
Adhiyaman Sakthivel
Adhiyaman Sakthivel - avatar
+ 1
it As ct
20th Mar 2018, 11:40 AM
Mustafa Warsame Ali
Mustafa Warsame Ali - avatar
+ 1
SELECT ct.name, it.name FROM customers as ct, items AS it WHERE it.seller_id=ct.id;
7th Apr 2018, 4:06 PM
Mahnoor Shahzad
Mahnoor Shahzad - avatar
+ 1
it as ct
5th Oct 2018, 5:30 PM
Vijaymala G Kamble
Vijaymala G Kamble - avatar
+ 1
it as ct
12th Jan 2020, 2:23 AM
Vanessa Daisley
Vanessa Daisley - avatar
+ 1
Fill in the blanks to select name and city from the ''people'' table.
23rd Sep 2021, 11:51 AM
MontherKrakgea
MontherKrakgea - avatar
0
Fill in the blanks to select the ''address'' from ''customers'', using the fully qualified name for the ''address'' column answerplease.
14th Dec 2021, 8:44 AM
K.Rakshana
0
name people
29th Dec 2021, 6:39 AM
MHD Himas
- 1
SELECT ct.name, .name FROM customers ct, items AS it WHERE it.seller_id= .id; ans it as ct
5th Jul 2020, 6:15 AM
Faith Mundi
Faith Mundi - avatar
- 1
Fill in the blanks to select name and city from the ''people'' table.
3rd Jun 2021, 9:11 AM
Jupudi Sri vidya
Jupudi Sri vidya - avatar
- 3
SELECT id, name FROM students WHERE id 12;
14th Jul 2021, 7:49 PM
irwan agustian
irwan agustian - avatar