Mysteries Articles

Found 2 articles

What is the significance of dreams in our life?

Rashmi Iyer
Rashmi Iyer
Updated on 27-Jun-2020 3K+ Views

Great leaders and entrepreneurs from Bill Gates to Steve Jobs, from Winston Churchill to Mahatma Gandhi had the courage to dream something. Every great movement in history has the dream and vision of these personalities recorded.Dreams can be understood as aspirations and ambitions of a person to achieve a target or a goal in life for at an individual level or for a social cause. To achieve success in true spirit in your life, dreams play a very significant role. It can be understood by the following points -Give Momentum To the LifeDreams help an individual get a purpose in ...

Read More

MySQL query to select rows except first row in descending order?

Kumar Varma
Kumar Varma
Updated on 30-Jul-2019 955 Views

Let us first create a table −mysql> create table DemoTable    -> (    -> Amount int    -> ); Query OK, 0 rows affected (0.50 sec)Insert some records in the table using insert command −mysql> insert into DemoTable values(10); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(20); Query OK, 1 row affected (0.11 sec) mysql> insert into DemoTable values(30); Query OK, 1 row affected (0.10 sec) mysql> insert into DemoTable values(40); Query OK, 1 row affected (0.15 sec)Display all records from the table using select statement −mysql> select *from DemoTable;Output+--------+ | Amount ...

Read More
Showing 1–2 of 2 articles
« Prev 1 Next »
Advertisements