
Search In
MAKE_SET(bits,str1,str2,...)
MAKE_SET function returns a set of values which are from string containing substrings separated by “,” characters, consisting of the strings that have the corresponding bit in bits set. str1 corresponds to bit 0, str2 to
If we have two sorted linked list and we want to merge both in a new list without creating new node space then we can use recursive approach for this . This approach takes O(max(m,n)) time complexity for merging.
Like we have a linked list named : l
To display percent to total in SQL, we want to leverage the ideas we used for rank/running total plus subquery.
Different from what we saw in the SQL Subquery section, here we want to use the subquery as part of the SELECT.
Name
Syncing Same Folder to S3 Bucket
Hi Friends,
Suppose you have some folder structure in your local and you want to upload the same folder structure to your amazon s3 bucket. Then you need to follow these steps.
Step 1: Set up aws cli in your applicat
Each version of Android is having a specific code name since Android version 1.5. These name are English alphabetically and a confectionery theme based (usually , sugary foods). And these names belongs to one or more version names.
Below is the list
Can any one give me the idea. How I can detect collision between 2 dom element. I have got this code form MDN. But can't go thorough it. Please help me.
var rect1 = {x: 5, y: 5, width: 50, height: 50}
var rect2 = {x: 20, y: 10, width: 10, height: 10
Hello All,
I have used magento1.9.1 and oye checkout extension, Now I am facing this following issue from staring, I am not able to understand anything here.
If my billing address and shipping address is same
If my billing and shipping address are di
MongoDB - Sorting
In any application we need to show list in certain order. Generally we show's user feeds in descending order. This can be achieve in MongoDB through "sort" properties.
e.g. We need to sort student name in ascending order.
db.col
Hello friends,
I am here to share a issue which I faced once, That is I want to separate a columns values into 2 columns.
So if you are also looking to separate a columns value into 2 columns, You can use following syntax-
UPDATE your_table SET co
ELT(N,str1,str2,str3,...)
The MySQL ELT function is used for get the Nth element of all listed arguments in the function. The first argument is used for which number of element you want to get. In the argument list the if N = 1 then return str1 and
