Which statements will be able to show the following result set?
a
.
)
SELECT invoice
_
id
,
total, last
_
name
FROM invoice
JOIN customer
USING
(
invoice
.
customer
_
id
=
customer.customer
_
id
)
;
b
.
)
SELECT invoice
_
id
,
total, last
_
name
FROM invoice, customer;
c
.
)
SELECT invoice
_
id
,
total, last
_
name
FROM invoice
JOIN customer
USING
(
customer
_
id
)
;
d
.
)
SELECT invoice
_
id
,
total, last
_
name
FROM invoice
WHERE customer
_
id
!
=
NULL;
SUBMIT MY ANSWER
Not the question you are looking for? Ask here!
Enter question by text
Enter question by image
Unlock Smarter Learning with AskSia Super!
Join Super, our all-in-one AI solution that can greatly improve your learning efficiency.