SQL query | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

SQL query

The details of the customer whose name starts either with letter C or P Your output should contain 6 column customer _address_id, customer _id,first_name,address, phone,email

14th Oct 2022, 11:34 AM
Sakshi Gupta
1 Resposta
0
Select customer_address_id, customer_id, first_name, address, phone, email From Customers Where first_name like 'C%' or first_name like 'P%' https://www.w3schools.com/mysql/mysql_like.asp
14th Oct 2022, 1:15 PM
SoloProg
SoloProg - avatar