C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL Date/Time maketime() FunctionThe maketime() is a MySQL date/time function. It is used to make the time from given hour, minute and second. Syntaxselect maketime(hour, minute, second); Parameter:hour: hour value for making time minute: minute value for making time second: second value for making time Returns:This function returns the time for a certain hour, minute, second combination. Example 1Select maketime(10,12,8); Output: Example 2Select maketime(12,10,5); Output:
Next TopicMySQL datetime
|