Computer Science, asked by suhaanibatra23, 10 months ago

What would be the output for the following query
Select Cutnumb,custname,address,balance From Customer where custname>'D';​

Attachments:

Answers

Answered by Anonymous
2

Answer:

hope it will help u ❤

Love -Maya

Attachments:
Answered by mawiteascc
1

Answer:

The output will not include custnumb with 405 and 567.

Explanation: This is about comparing string. Since B comes before D in the characteset collation. So custname with before D will not be included in the output. Here we are using comparison operator (works with string and number) which will return TRUE or FALSE depending on the dictionary order of the characters.

Similar questions