PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
CREATE TABLE students ( student_id INT PRIMARY KEY AUTO_INCREMENT, first_name VARCHAR(50) NOT NULL, last_name VARCHAR(50) NOT NULL, age INT, grade DECIMAL(3,2), course VARCHAR(50) ); -- Insert sample data INSERT INTO students (first_name, last_name, age, grade, course) VALUES ('John', 'Doe', 20, 8.5, 'Mathematics'), ('Jane', 'Smith', 19, 9.0, 'Physics'), ('Mike', 'Brown', 21, 7.8, 'Chemistry'), ('Sarah', 'Wilson', 20, 8.9, 'Biology'), ('Tom', 'Davis', 19, 8.2, 'Mathematics'); -- Verify the data SELECT * FROM students;
Copy Clear
Copy Format Clear
<?php $q = mysqli_prepare( $mysqli, $query = "SELECT surname FROM student"; $result = mysqli_query($conn, $query) or die("Invalid query"); print "Successful Query"; mysqli_close($conn);
Show:  
Copy Clear