mysql syllabus
1 | Introduction of Data |
2 | What is database |
3 | DBMS |
4 | different service providers for DBMS |
5 | Introduction of sql |
6 | introduction DDL |
7 | Introduction of DML |
8 | Introduction of DCL |
9 | Introduction of DTL |
10 | select statement |
11 | selecting all columns |
12 | selecting specific columns |
13 | arithmatic experssions |
14 | column headings |
15 | operator precedence |
16 | defining null |
17 | null values with arithmatic operators |
18 | column alias |
19 | concatination operator |
20 | elimination of duplicate rows |
21 | table structure |
22 | limiting rows selection |
23 | where clause |
24 | comparision conditions |
25 | between condition |
26 | in condition |
27 | like condition |
28 | null condition |
29 | and operator |
30 | or operator |
31 | not operator |
32 | order by clause |
33 | sorting |
34 | single row functions |
35 | group functions |
36 | avg function |
37 | sum function |
38 | min function |
39 | max function |
40 | count function |
41 | distinct function |
42 | groupby clause |
43 | having clause |
44 | data from multiple tables |
45 | types of joins |
46 | natural join |
47 | join by using clause |
48 | join with column names |
49 | join with on clause |
50 | equie join |
51 | non equie join |
52 | inner join |
53 | outer join |
54 | left outer join |
55 | right outer join |
56 | full outer join |
57 | cross join |
58 | sub queries |
59 | single row subqueries |
60 | group function in sub queries |
61 | having cluase in sub queries |
62 | multiple row sub query |
63 | any operator in multiple row sub queries |
64 | all operator in multiple row sub queries |
65 | set operatos |
66 | union operator |
67 | unionall operator |
68 | intersect operator |
69 | minus operator |
70 | DML |
71 | insert statement |
72 | update statement |
73 | delete statement |
74 | truncate statement |
75 | commit statement |
76 | rollback statement |
77 | DDL |
78 | create table statement |
79 | default option |
80 | defining constraint |
81 | not null constraint |
82 | unique constraint |
83 | primary key constraint |
84 | foriegn key constraint |
85 | check constraint |
86 | alter table |
87 | dropping a table |
88 | schema objects |
89 | views |
90 | creating a view |
91 | modifying a view |
92 | deleting a view |
93 | indexes |