Skip to content

Database.Guide

how to

Capitalization of Day and Month Names When Formatting Dates in Oracle

October 1, 2021 by Ian

When getting the day and/or month name from a date in Oracle, you may want to return it in uppercase, lowercase, or title case.

Fortunately, this is easy to do. The result reflects the capitalisation of your format model.

Read more

Categories Oracle Tags date format, dates, how to

SQLcl Formatting Options (Oracle)

September 29, 2021 by Ian

When using SQLcl to query Oracle Database, you can use the SET SQLFORMAT command to determine the format of the results.

You can also use inline comments to specify the format from directly within your query.

Read more

Categories Database Tools, Oracle Tags how to, sqlcl

Export Oracle Query Results to an HTML File when using SQLcl

September 28, 2021 by Ian

When using SQLcl with Oracle Database, you can use the SPOOL command to export your query results to a file with an .html extension, and you can set SQLFORMAT to html in order to output the actual query results in HTML format.

Read more

Categories Oracle Tags export, how to, sqlcl

2 Ways to Replace a Substring in MariaDB

September 24, 2021 by Ian

If you need to replace a substring with another string in MariaDB, here are two approaches that you can use.

Read more

Categories MariaDB Tags how to, string functions

How to Export Query Results to a CSV File in SQL Developer (Oracle)

September 23, 2021 by Ian

You can do this to export your query results to a CSV file when using SQL Developer to query Oracle Database.

Read more

Categories Database Tools, Oracle Tags export, how to

Return the Short Month Name from a Date in Oracle

September 22, 2021 by Ian

In Oracle Database, we can use the TO_CHAR(datetime) function to return the various date parts from a datetime value, including the short month name.

The short month name is also referred to as the abbreviated month name. Examples of returning the short month name are below.

Read more

Categories Oracle Tags date format, dates, how to

UID – Return the ID of the Current Session in Oracle

September 22, 2021 by Ian

In Oracle Database, the UID function returns an integer that uniquely identifies the session user (the user who logged on).

Read more

Categories Oracle Tags functions, how to, system functions, what is

How to Export Query Results to a CSV File in SQLcl (Oracle)

September 21, 2021 by Ian

If you’re using SQLcl to run queries against Oracle Database, then you can use the SPOOL command to export your query results to a CSV file.

Read more

Categories Oracle Tags export, how to, sqlcl

4 Ways to Separate Hours, Minutes, and Seconds from a Time Value in MariaDB

September 20, 2021 by Ian

MariaDB has several functions that enable you to extract various date and time parts from date/time values. You can use these to separate each date/time component into its own column if required.

Below are four ways to extract the hours, minutes, and seconds from a time value in MariaDB. As a bonus, we’ll also include microseconds.

Read more

Categories MariaDB Tags dates, how to, time format

How to Return Fractional Seconds from a Datetime Value in Oracle

September 19, 2021 by Ian

When using Oracle Database, you can use the TO_CHAR(datetime) function to return various parts of a datetime value, including the fractional seconds.

To return the fractional seconds part from a datetime value, use the FF format element.

Read more

Categories Oracle Tags date format, dates, how to
Older posts
Newer posts
← Previous Page1 … Page127 Page128 Page129 … Page201 Next →

About | Privacy Policy

© 2026 Database.Guide • All rights reserved