Question

6. Regular Expressions/SQL. Write SQL for the following problems on the university database. A. Find students...

6. Regular Expressions/SQL.

Write SQL for the following problems on the university database.

A. Find students whose name is properly capitalized (both first and last name start from an upper-case letter, rest of the name is lower-case). Hint: you can use [A-Z] to represent any upper case letter in regular expressions.

B. Find course titles that consist of exactly 3 words (e.g., “Theory of Computation”).

C. Find students whose SSN numbers has a pattern of 321 repeated twice (sequentially).

0 0
Add a comment Improve this question Transcribed image text
Answer #1

a) select *
from student_table
where firstname LIKE '[A-Z]%' and lastname LIKE '[A-Z]%';

b)select *
from course
where course_title LIKE '% % %';

c)select *
from student_table
where ssn LIKE '%321321% OR '321321%' OR '%321321';

Add a comment
Know the answer?
Add Answer to:
6. Regular Expressions/SQL. Write SQL for the following problems on the university database. A. Find students...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT