Added line break in outputs

This commit is contained in:
K 2024-11-09 00:49:29 +05:30
parent 395f3a985c
commit ea43287640
Signed by: notkshitij
GPG Key ID: C5B8BC7530F8F43F

View File

@ -53,10 +53,10 @@ INSERT INTO Customers VALUES ('Rajesh', 2, 30000);
<details>
<summary>Output</summary>
1 row(s) inserted.
New salary with value inserted: 20000
1 row(s) inserted.
New salary with value inserted: 30000
1 row(s) inserted.<br>
New salary with value inserted: 20000<br>
1 row(s) inserted.<br>
New salary with value inserted: 30000<br>
</details>
2. Update operation:
@ -69,10 +69,10 @@ UPDATE Customers SET salary = 35000 WHERE id = 2;
<details>
<summary>Output</summary>
1 row(s) updated.
Salary difference: 10000
1 row(s) updated.
Salary difference: 5000
1 row(s) updated.<br>
Salary difference: 10000<br>
1 row(s) updated.<br>
Salary difference: 5000<br>
</details>
@ -86,10 +86,10 @@ DELETE FROM Customers WHERE id = 2;
<details>
<summary>Output</summary>
1 row(s) deleted.
Salary with value deleted: 10000
1 row(s) deleted.
Salary with value deleted: 35000
1 row(s) deleted.<br>
Salary with value deleted: 10000<br>
1 row(s) deleted.<br>
Salary with value deleted: 35000<br>
</details>
---