Arjun Thakur has Published 1025 Articles

MySQL: What is 'AUTO_INCREMENT=5' in a create table query?

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 13:13:09

827 Views

The AUTO_INCREMENT=5 in a create table query tells that the first record will start from 5 i.e. not default 1. As we know if you do not set the value to AUTO_INCREMENT then MySQL starts from 1 by default.The syntax is as follows:CREATE TABLE yourTableName ( yourColumnName1 dataType NOT NULL ... Read More

How do you append a carriage return to a value in MySQL?

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 12:30:09

1K+ Views

You need to use CONCAT_WS() function from MySQL to append a carriage return. If you are looking for a new line, then append in the beginning. The syntax is as follows −SELECT CONCAT_WS(‘’, yourColumnName) as anyVariableName from yourTableName;To understand the above syntax, let us create a table. The query ... Read More

Style every element that is the second child of its parent with CSS

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 11:22:25

1K+ Views

To style every element that is the second child of its parent with CSS, use the CSS :nth-child(n) selector.ExampleYou can try to run the following code to implement the :nth-child(n) selectorLive Demo                    p:nth-child(4) {         ... Read More

Role of CSS :invalid Selector

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 11:12:44

228 Views

Use the CSS :invalid selector to style all elements with an invalid value. You can try to run the following code to implement the :invalid selectorExampleLive Demo                    input:invalid {             background: red;          }                     Heading                    The style (red color background) appears if you type an irrelevant/ invalid email address.    

Style every enabled element with CSS

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 09:46:17

196 Views

To style every enabled element, use the CSS :enabled selector.ExampleYou can try to run the following code to style enabled elementLive Demo                    input:enabled {             background: blue;          }                              Subject          Student:          Age:          

Detection of ambiguous indentation in python

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 09:27:06

607 Views

Indentation is an important feature of Python syntax. Code blocks in function, class or loops are required to follow same indent level for statements in it. The tabnanny module in Python's standard library is able to detect any violation in this stipulation.This module is primarily intended to be used in ... Read More

Overlap Elements with CSS

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 08:49:14

370 Views

To overlap elements, use the CSS z-index property. You can try to run the following code to implement the z-index property and set image behind the textExampleLive Demo                    img {             position: absolute;             left: 0px;             top: 0px;             z-index: -1;          }                           This is demo text.    

Update an entire row in MySQL?

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 07:54:16

2K+ Views

To update an entire row in MySQL, use UPDATE command. You need to know the primary key column. The syntax is as follows to update an entire row.UPDATE yourTableName SET yourColumnName1 = ’yourValue1’ ,yourColumnName2 = ’yourValue2’ ,    yourColumnName3 = ’yourValue3’ ,.......................N    WHERE yourPrimaryKeyColumnName = yourValue;To understand the above ... Read More

MySQL query to find a list of city names that do not start with vowels?

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 07:43:05

13K+ Views

You can use DISTINCT with RLIKE operator to find a list of city names that do not start with vowels.The syntax is as follows −SELECT DISTINCT yourCityColumnName FROM yourTableName WHERE yourCityColumnName NOT RLIKE ‘ ^[AEIOUaeiou].*$’;To understand the above syntax, let us create a table. Here, we have a column for ... Read More

How to convert DateTime to a number in MySQL?

Arjun Thakur

Arjun Thakur

Updated on 30-Jun-2020 07:33:30

2K+ Views

To convert the date time to a number in MySQL, the syntax is as follows −SELECT UNIX_TIMESTAMP(yourColumnName) 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 DateTimeToNumberDemo    -> (    -> Id int ... Read More

Previous 1 ... 4 5 6 7 8 ... 103 Next
Advertisements