Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

unu wirleh/how are they implemented? 5. Write a SQL create table statement for a

ID: 3738322 • Letter: U

Question

unu wirleh/how are they implemented? 5. Write a SQL create table statement for a table named "student' in the "college' database. The tbie has three attributes. "class" varying character string not exceeding 25 bytes, "semester', 15 characters, and "grade" numeric supporting real number. All attribute must be populated with values. Using the table in question 5 write a complete python program that connects to the "college database and executes a select statement that returns all rows from the student table if the grade is 3.5 or higher 6. 7. Write a stored procedure named myProc that implements the sql statement in question 6

Explanation / Answer

As per Chegg policy, I am answering only first question. Kindly upload remaining questions further in order to get them answered.

5.) SQL:

Create Table students (

class varchar(25) NOT NULL,

semester varchar(15) NOT NULL,

grade REAL NOT NULL

);