DATABASE SYNTAX

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:35 AM on 3/24/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

mysql -h localhost -u root -p

To activate mysql

2
New cards

Show Databases;

To show databases

3
New cards

Create Database DatabaseName;

To Create a Database

4
New cards

Use DatabaseName;

To use a specific Database

5
New cards

Create Table TableName;

To create a Table

6
New cards

Desc TableName;

To describe the structure (schema) of a database table

7
New cards

Select* from TableName;

To show the Table

8
New cards

Insert into TableName Values();

To fill in/insert values into the table

9
New cards

Select Sum(ColumnName) from TableName;

To compute the sum of a specific column

10
New cards

Select Avg(ColumnName) from TableName;

To compute the average of a specific column

11
New cards

Select Count(ColumnName) from Bill;

To count how many data entries in the table

12
New cards

Select Max(ColumnName) from TableName;

To get the maximum value of a specific column;

13
New cards

Select Min(ColumnName) from TableName;

To get the minimum value of a specific column

14
New cards

Select* from TableName Order by ColumnName;

To arrange the data entries into ascending order

15
New cards

Select* from TableName Order by ColumnName desc;

To arrange the data entries into descending order

16
New cards

Select* from TableName Where Name like ‘Letter%’;

To search for a specific data entry using its first letter

17
New cards

Drop Table TableName;

To delete the table

18
New cards

Drop Database DatabaseName;

To delete a database

Explore top flashcards

flashcards
Chemistryy
34
Updated 1208d ago
0.0(0)
flashcards
Social Studies Final Review
63
Updated 1043d ago
0.0(0)
flashcards
Chapter 24
69
Updated 1232d ago
0.0(0)
flashcards
US History Chapter 10 Test
32
Updated 106d ago
0.0(0)
flashcards
AP Lang Terms "B-H"
44
Updated 1200d ago
0.0(0)
flashcards
MAAN Quotes
22
Updated 1062d ago
0.0(0)
flashcards
Animal Quiz for Biology
29
Updated 1098d ago
0.0(0)
flashcards
Chemistryy
34
Updated 1208d ago
0.0(0)
flashcards
Social Studies Final Review
63
Updated 1043d ago
0.0(0)
flashcards
Chapter 24
69
Updated 1232d ago
0.0(0)
flashcards
US History Chapter 10 Test
32
Updated 106d ago
0.0(0)
flashcards
AP Lang Terms "B-H"
44
Updated 1200d ago
0.0(0)
flashcards
MAAN Quotes
22
Updated 1062d ago
0.0(0)
flashcards
Animal Quiz for Biology
29
Updated 1098d ago
0.0(0)