AmitDiwan has Published 11365 Articles

How to use MySQL SELECT LEFT to fetch the records containing string with slash

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:27:17

56 Views

Let us first create a −mysql> create table DemoTable1418    -> (    -> EmployeeCode text    -> ); Query OK, 0 rows affected (0.51 sec)Insert some records in the table using insert −mysql> insert into DemoTable1418 values('EMP-2110/Carol'); Query OK, 1 row affected (0.12 sec) mysql> insert into DemoTable1418 values('EMP-1900/David'); ... Read More

Order date records and fetch the 2nd ordered record in MySQL

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:24:35

83 Views

To order, use ORDER BY and to fetch only the 2nd ordered record, use MySQL LIMIT and set offset as well. Let us first create a −mysql> create table DemoTable1417    -> (    -> CustomerId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> CustomerName varchar(20),    -> ShippingDate date ... Read More

Fetch substrings from a string with words separated by slash in MySQL?

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:21:14

125 Views

For this, you can use SUBSTRING_INDEX(). Let us first create a −mysql> create table DemoTable1416    -> (    -> StudentCode varchar(100)    -> ); Query OK, 0 rows affected (1.56 sec)Insert some records in the table using insert −mysql> insert into DemoTable1416 values('101/John/Smith'); Query OK, 1 row affected (0.13 ... Read More

How to sum the values in the table by month with MySQL?

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:19:52

2K+ Views

For this, use EXTRACT(), that would allow you to extract specific month records. For example, to add all the prices in January (irrespective of the year).Let us first create a −mysql> create table DemoTable1415    -> (    -> ProductPurchaseDate date,    -> ProductPrice int    -> ); Query OK, ... Read More

Select multiple Book Titles that share the minimum (PRICE) value in MySQL?

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:17:49

151 Views

For this, use MySQL MIN(). Let us first create a −mysql> create table DemoTable1414    -> (    -> BookTitle varchar(40),    -> BookPrice int    -> ); Query OK, 0 rows affected (0.82 sec)Insert some records in the table using insert −mysql> insert into DemoTable1414 values('Deep dive using java', ... Read More

Fastest way to search for a date from the date records in MySQL

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:15:05

215 Views

The fastest and easiest way is to use the MySQL BETWEEN keyword. Let us first create a −mysql> create table DemoTable1413    -> (    -> EmployeeName varchar(20),    -> EmployeeJoiningDate datetime    -> ); Query OK, 0 rows affected (0.45 sec)Insert some records in the table using insert −mysql> ... Read More

MySQL query to check if a certain row has only two words?

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:13:35

262 Views

For this, use Regular Expression in MySQL as in the below syntax −select * from yourTableName where yourColumnName regexp '^[^ ]+[ ]+[^ ]+$';The above query will work when the two words are separated by a space. Let us first create a −mysql> create table DemoTable1412    -> (    -> ... Read More

MySQL query to find a value in a set of values separated by comma in a custom variable

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:12:02

175 Views

For this, use FIND_IN_SET() in MySQL and use the value from a custom variable. Let us first create a −mysql> create table DemoTable1411    -> (    -> Value int    -> )    -> ; Query OK, 0 rows affected (0.50 sec)Insert some records in the table using insert ... Read More

How to mask data fields in MySQL?

AmitDiwan

AmitDiwan

Updated on 12-Nov-2019 05:08:56

1K+ Views

To mask data fields, use CONCAT() along with REPEAT(). Here, we will mask data fields with #. Let us first create a −mysql> create table DemoTable1410    -> (    -> Password varchar(80)    -> ); Query OK, 0 rows affected (0.51 sec)Insert some records in the table using insert ... Read More

jQuery event.namespace Property

AmitDiwan

AmitDiwan

Updated on 11-Nov-2019 13:09:02

116 Views

The event.namespace property in jQuery is used to return the custom namespace when the event was triggered.SyntaxThe syntax is as follows −event.namespaceExampleLet us now see an example to implement the jQuery event.namespace property −    $(document).ready(function(){       $("p").on("custom.demoNamespace", function(event){          alert(event.namespace); ... Read More

Advertisements