Xampp Installation
Learn how to install xampp.
Read MoreMaster SQL and database management with our beginner-friendly tutorials. Get free code snippets, practical query examples, and step-by-step guides to build, manage, and optimize modern databases. Whether you’re a student or developer, our easy SQL lessons help you write efficient queries, understand database design, and improve your programming skills..
Start Learning Browse SnippetsLearn how to install xampp.
Read MoreStart xampp server with cmd command.
Read MoreCreate database in xampp server.
Read MoreShow created databases.
Read MoreUse created database.
Read MoreCreate a new table in database.
Read MoreShow structure of the university table.
Read MoreCreate another new table in database.
Read MoreShow structure of the student table.
Read MoreEnter data into university table.
Read MoreEnter data into student table.
Read MoreShow data in all columns and rows from university table.
Read MoreShows all the columns and rows from the student table.
Read MoreDisplays only the name column from the student table.
Read MoreDisplays the name column, but the output heading is renamed to Undergraduates.
Read MoreShows only the index number and name columns from the students table.
Read MoreShows the index number and the name column, but names are displayed under the heading Undergraduates.
Read MoreDisplays index number and name (as Undergraduates) sorted by index number in descending order (largest to smallest).
Read MoreDisplays index number and name (as Undergraduates) sorted by name in descending alphabetical order (Z → A).
Read MoreShows only unique names from the students table (removes duplicates). .
Read MoreUsed to modify the structure of the university table (e.g., add, delete, or change columns). .
Read MoreShows the structure (columns, types, keys) of the university table.
Read MoreDisplays all data from the university table.
Read MoreUsed to change/update data in the university table.
Read MoreDisplays all data from the university table.
Read MoreShows the payment column for the university named “university of technology”.
Read MoreAdds 1000 to the payment and shows it under the heading Income.
Read MoreCounts the number of students in the student table whose university ID is UOO1.
Read More