Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Mysteries Articles
Found 2 articles
What is the significance of dreams in our life?
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 MoreMySQL query to select rows except first row in descending order?
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