Posts

Showing posts with the label SQL Date function

Featured Post

Python map() and lambda() Use Cases and Examples

Image
 In Python, map() and lambda functions are often used together for functional programming. Here are some examples to illustrate how they work. Python map and lambda top use cases 1. Using map() with lambda The map() function applies a given function to all items in an iterable (like a list) and returns a map object (which can be converted to a list). Example: Doubling Numbers numbers = [ 1 , 2 , 3 , 4 , 5 ] doubled = list ( map ( lambda x: x * 2 , numbers)) print (doubled) # Output: [2, 4, 6, 8, 10] 2. Using map() to Convert Data Types Example: Converting Strings to Integers string_numbers = [ "1" , "2" , "3" , "4" , "5" ] integers = list ( map ( lambda x: int (x), string_numbers)) print (integers) # Output: [1, 2, 3, 4, 5] 3. Using map() with Multiple Iterables You can also use map() with more than one iterable. The lambda function can take multiple arguments. Example: Adding Two Lists Element-wise list1 = [ 1 , 2 , 3 ]

SQL: 8 Frequently Used DATE Functions

Image
SQL DATE function for all Developers. DATE Function is powerful in SQL. In SQL projects, people use this Function variety of ways. All projects depends in DATE, and without it there is no way of existing of project.  The Quick tour helps you use this function effectively.  You can learn Oracle SQL step by step for all Developers. Below is the list of SQL DATE functions SYSDATE - It returns current local DATE and Time CURRENT_DATE - Return local DATE and TIME and adjusted to current session Time Zone. ROUND (DATE) - Rounds to nearest DAY TRUNC (DATE) - Truncates Time MONTHS_BETWEEN(date1,date2) - Returns number of months between date1 and date2' LAST_DAY(DATE)- Returns last of the month ADD_MONTHS(date,integer_months) - Adds specified number of months to specified date. NEXT_DAY(date, day_of_week) - Returns to next day of the week that comes after the specified DATE Also Read   The Best SQL Book for all Developers.