Ask Question
1 March, 04:50

List the name, department, phone number, and email address of employees with a phone number beginning with "5-".

+4
Answers (1)
  1. 1 March, 05:14
    0
    select name, department, phone_number, email from employee e

    where e. phone_number like '5-%'

    Explanation:

    On Chegg + SQL textbook

    here we are making use of like operator to match any phone number that starts with '5-'. Like operator has two wild card that can be used with it.

    (%) - -This represents zero, one or multiple characters.

    (_) - - This represents a single character.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “List the name, department, phone number, and email address of employees with a phone number beginning with "5-". ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers