Chandu yadav has Published 1091 Articles

MySQL Mass Update with CASE WHEN/ THEN/ ELSE?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:20:23

10K+ Views

The syntax for mass update with CASE WHEN/ THEN/ ELSE is as follows −UPDATE yourTableName set yourColumnName=case when yourColumnName=Value1 then anyUpdatedValue1 when yourColumnName=Value2 then anyUpdatedValue2 when yourColumnName=Value3 then anyUpdatedValue3 when yourColumnName=Value4 then anyUpdatedValue4 else yourColumnName end;To understand the above syntax, let us first create a table. The query to create ... Read More

Fetching rows added in last hour with MySQL?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:16:36

6K+ Views

You can use date-sub() and now() function from MySQL to fetch the rows added in last hour.SyntaxThe syntax is as follows −select *from yourTableName where yourDateTimeColumnName create table LastHourRecords -> ( -> Id int, -> Name varchar(100), -> Login datetime -> ); Query OK, 0 rows affected (0.67 sec)Insert ... Read More

Get the time difference and convert it to hours in MySQL?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 11:11:26

2K+ Views

You can achieve with the help of timestampdiff() method from MySQL. The syntax is as follows −SyntaxSELECT ABS(TIMESTAMPDIFF(HOUR, yourColumnName1, yourColumnName2)) as anyVariableName from yourTableName;To understand the above syntax, let us create a table. The query to create a table is as follows −mysql> create table DifferenceInHours    -> (   ... Read More

Set whether the text should be overridden to support multiple languages with CSS

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:23:25

111 Views

Use the unicode-bdi property to set whether the text should be overridden to support multiple languages with CSSExampleLive Demo                    p.demo1 {             direction: rtl;             unicode-bidi: bidi-override;          }          p.demo2 {             direction: rtl;             unicode-bidi: isolate;          }                     The unicode-bidi Property       This is demo text.       This is demo text       This is demo text    

How to close or hide the virtual keyboard on Android?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:17:36

5K+ Views

In Android there are some situations, we should close android default keyboard forcefully. For that this example is help for you.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 ... Read More

How to throw a C++ exception?

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:15:04

296 Views

Exception handling is used to handle the exceptions. We can use try catch block to protect the code. Exception can be thrown anywhere within the code block. The keyword “throw” is used to throw an exception.Here is an example of throw in C++ language, Example Live Demo#include using namespace std; ... Read More

expm1() in C++

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 10:11:08

66 Views

The function expm1() is used to calculate the exponential raised to the power of any number minus one. It returns the value of (exponential raised to the power of a) - 1.Here is the mathematical expression of expm1(), expm1(a) = (e^a) - 1Here is the syntax of expm1() in C++ ... Read More

Usage of CSS visibility property

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 09:56:20

148 Views

A property called visibility allows you to hide an element from view. You can use this property along with JavaScript to create very complex menu and very complex webpage layouts.The visibility property can take the values listed in the table that followsValueDescriptionvisibleThe box and its contents are shown to the user.hiddenThe ... Read More

Android AsyncTask example and explanation

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 09:50:51

14K+ Views

Android AsyncTask going to do background operation on background thread and update on main thread. In android we cant directly touch background thread to main thread in android development. asynctask help us to make communication between background thread to main thread.Methods of AsyncTaskonPreExecute() − Before doing background operation we should ... Read More

Control how letters are spaced in CSS

Chandu yadav

Chandu yadav

Updated on 25-Jun-2020 09:25:34

112 Views

Use the font-kerning property to control how letters placed on a web page. You can try to run the following code to implement the font-kerning propertyExampleLive Demo                    #demo {             font-kerning: normal;          }                     This is demo text.    

Advertisements