George John has Published 1167 Articles

Create Decade Tuple from another collection in Java

George John

George John

Updated on 30-Jul-2019 22:30:25

62 Views

To create Decade Tuple from another collection in Java, use the fromArray() or the fromCollection() method. Here, we will see how to create a Decade Tuple using the fromCollection() method. This method will allow us to crate a Decade Tuple from a List collection in Java.Let us first see what ... Read More

MySQL case-insensitive DISTINCT?

George John

George John

Updated on 30-Jul-2019 22:30:25

5K+ Views

If you want case-insensitive distinct, you need to use UPPER() or LOWER().Case 1: Using UPPER().The syntax is as follows:SELECT DISTINCT UPPER(yourColumnName) FROM yourTableName;Case 2: Using LOWER().The syntax is as follows:SELECT DISTINCT LOWER(yourColumnName) FROM yourTableName;To understand the above syntax, let us create a table. The query to create a table is ... Read More

C++ Program to Perform Dictionary Operations in a Binary Search Tree

George John

George John

Updated on 30-Jul-2019 22:30:25

1K+ Views

A Binary Search Tree is a sorted binary tree in which all the nodes have following two properties−The right sub-tree of a node has a key greater than to its parent node's key.The left sub-tree of a node has a key less than or equal to its parent node's key.Each ... Read More

How to implement MySQL CASE with OR condition?

George John

George John

Updated on 30-Jul-2019 22:30:25

1K+ Views

Here is the syntax of MySQL CASE OR conditionSELECT yourColumnName1, .....N ,    CASE WHEN yourColumnName2=0 or yourColumnName2IS NULL THEN 'yourMessage1' ELSE 'yourMessage2' END AS yourAliasName FROM yourTableName;To understand the above syntax, let us create a table. The query to create a table is as followsmysql> create table ReservationSystems   ... Read More

The iterator() method of Java AbstractSequentialList class

George John

George John

Updated on 30-Jul-2019 22:30:25

57 Views

The iterator() method of the AbstractSequentialList class iterates over the elements in this list and returns it.The syntax is as followsIterator iterator()To work with the AbstractSequentialList class in Java, you need to import the following packageimport java.util.AbstractSequentialList;The following is an example to implement AbstractSequentialList iterator() method in JavaExample Live Demoimport java.util.LinkedList; ... Read More

How to create a dialog with Neutral options?

George John

George John

Updated on 30-Jul-2019 22:30:25

316 Views

This example demonstrate about How to create a dialog with Neutral options.Step 1 − Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     In the ... Read More

How to match underscore in a MySQL String?

George John

George John

Updated on 30-Jul-2019 22:30:25

743 Views

To match underscore in a MySQL string, you can use the below syntax −select *from yourTableName where yourColumnName LIKE '%\_%';Let us first create a table −mysql> create table DemoTable (    ClientId varchar(200) ); Query OK, 0 rows affected (0.79 sec)Insert some records in the table using insert command −mysql> ... Read More

Earliest data output time considering TCE in 8085 Microprocessor

George John

George John

Updated on 30-Jul-2019 22:30:25

90 Views

The 74138 receives the addresses ranging from A15 to A14 from 8085 Processor by means of the octal line driver 74LS244 which delays 12-nS. Simultaneously IO/M* signal is received from 8085 Processor via 74LS244. After that the CS* signal gets receive by the 27128 from 74LS138 which is 3 to ... Read More

Reset MySQL field to default value?

George John

George John

Updated on 30-Jul-2019 22:30:25

1K+ Views

In MySQL, there are two approaches by which you can reset the MySQL field to default value. One is default keyword and another is default() function.Case 1: Using default keyword. The syntax is as follows:UPDATE yourTableName SET yourColumnName=default where yourCondition;Case 2: Using default() function. The syntax is as follows:UPDATE yourTableName ... Read More

Write a MySQL query to check if field exists and then return the result set?

George John

George John

Updated on 30-Jul-2019 22:30:25

255 Views

To check if field exists and then to return the result set, you can use the below syntax −show columns from yourTableName where field='yourColumnName';Let us first create a table −mysql> create table DemoTable (    UserId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    UserFirstName varchar(20),    UserLastName varchar(20),    UserAge ... Read More

Advertisements