What is an SQL? Is SQL a standard? Explain.
1B- What are the two categories of SQL statements. Give examples
for each category.
2- Consider the logical schema below:
PET_OWNER(OWNER_ID [N, 18], FIRST_NAME [A, 250], LAST_NAME [A,
250], PHONE [A, 50], EMAIL [A, 250])
PET(PET_ID [N, 18], PET_NAME [N, 18], PET_TYPE [A, 20], BREED [A,
50], DOB [D, 10], OWNER_ID [N, 18])
A- Write an SQL statement to create a database named
PET_OWNER_DB
B- Write SQL statements to create PET_OWNER...