Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

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;

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php $result = $mysqli->query("DELETE FROM student WHERE Id='3'"); while($row = mysqli_fetch_array($result)) { echo " ".$row['first_name'] . " :" . $row['grade'].",".$row['age']."."; }
Copy Clear