Practical Questions Class X SA-1SOLUTIONS
Practical Questions Class X SA-1SOLUTIONS
To display all the records of table Student, you can use the following command:
```sql
```
|---------|-------|------|----------|
| 2 | X | AMIT | 356789 |
| 3 | X | ANJU | 123654 |
| 4 | XI | MINI | 589756 |
Q3.2. To insert one record of your choice, you can use the following command:
```sql
```
|---------|-------|------|----------|
| 2 | X | AMIT | 356789 |
| 3 | X | ANJU | 123654 |
| 4 | XI | MINI | 589756 |
Q3.3. To display the record of student whose roll number is 3, you can use the following command:
```sql
```
|---------|-------|------|----------|
| 3 | X | ANJU | 123654 |
Q3.4. To display the record of students who are in class 'X', you can use the following command:
```sql
```
|---------|-------|------|----------|
| 2 | X | AMIT | 356789 |
| 3 | X | ANJU | 123654 |
Q3.5. To display the record of student 'Anju', you can use the following command:
```sql
```
|---------|-------|------|----------|
| 3 | X | ANJU | 123654 |