Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  Programming Blogs  >  Database Star programming Blog  > 

2022-10-13 04:55
In this guide, you’ll learn how to format DATE values into many different formats, how to insert DATE values into a table, and more. Summary You can insert date values into a DATE colu… Read More
2022-10-11 01:11
In this article, you’ll learn what the ON DELETE CASCADE keyword means and what it does. What is On Delete Cascade in SQL? The ON DELETE CASCADE is an option when defining a foreign ke… Read More
2022-10-10 02:40
In this guide, you’ll learn all about Oracle Live SQL, the web-based tool by Oracle that has a built-in Oracle database for practising your SQL. What Is Oracle Live SQL? Oracle Live SQ… Read More
2022-10-06 01:26
The SQL DECIMAL data type is useful for storing numbers with decimal places. Learn all about it, including which databases support it, and how to work with it, in this guide.   What is… Read More
2022-10-04 04:23
In this guide, you’ll learn how to use multiple inner joins in SQL, why you may want to do this, and see some examples. Can You Use Multiple Inner Joins in SQL? Yes, you can. Using an… Read More
2021-12-22 03:52
Privileges in MySQL are an important part of the database. In this guide, you’ll learn: what privileges are and what they do the privileges that are available how to give and take priv… Read More
2021-12-12 23:21
Working with timezones can be one of the hardest things in a database. In this guide, you’ll learn: Why timezones are hard to work with A rule that covers almost all situations An exce… Read More
2021-10-14 03:45
The ENUM data type in MySQL is a helpful data type for specifying a valid range of values. In this guide, you’ll learn all about the MySQL ENUM feature, including: what the ENUM featur… Read More
2021-10-13 18:53
Do you want to change a user’s password on a MySQL database? If so, then this guide is what you need. You’ll learn: a brief summary of the command how to use the command to chang… Read More
2021-10-04 00:49
Do you want to learn how to generate pivoted data or pivot tables in MySQL? In this article, you’ll learn: what the pivot concept is how to generate a pivot table in MySQL how to gener… Read More
2021-09-24 03:29
If you want to set up Flyway DB on your database, you’ve come to the right place. In this guide, you’ll learn: What Flyway is A step-by-step guide to setting it up on your databa… Read More
2021-09-21 21:27
Do you want to, or need to, learn how to use GitHub for your SQL files? GitHub is a commonly-used service for application development. But it can also be used for your SQL scripts and other… Read More
2021-09-15 22:23
If you’re using SQL Developer, there may be a time where you want to import a CSV file into your Oracle database. SQL Developer includes a wizard that lets you import a file. Let&rsquo&hell…Read More
2021-09-13 03:36
In SQL, you may need to find out more about the table and its columns. This is often called “sql describe table” or describing a table. Different vendors (Oracle, SQL Server, MyS… Read More
2021-09-11 18:21
Have you ever needed to calculate a “running total” or “cumulative sum” in SQL? You can do this in SQL without any other programming language to process the data. In… Read More
2021-09-05 19:43
In this guide, you’ll learn: What Docker is (briefly) Why you might want to use it for your database How to set it up How to get a database (Oracle, SQL Server, MySQL, or PostgreSQL) r… Read More
2021-03-08 19:19
If you want to see a list of databases on your server, you can run commands to do this. Let’s see how you can do this in several different SQL vendors.   Summary To show a list of… Read More
2021-03-07 22:22
Sometimes you’ll need to delete a database or drop a database in SQL. There’s a command to do this in SQL. Let’s see how you can do this in different databases.   Drop… Read More
2021-03-04 23:00
PostgreSQL has quite a lot of features for storing and working with JSON data. In this guide, you’ll learn: What JSON is and why you might want to use it Creating a table to store JSON… Read More
2021-03-04 01:30
The basic UPDATE statement in SQL allows us to update data in a table. But what if we want to update data in one table based on data in another table? There are a few ways to do that in diff… Read More
2021-03-03 20:15
In this guide, you’ll learn what the DBMS_OUTPUT.PUT_LINE function in Oracle does, see some examples, learn how to enable it in different editors, and learn why it should not be used i… Read More
2021-03-03 04:34
Many SQL queries that we write need to use values provided from other areas, such as user input or an application. There are a couple of ways to include these values in your queries, but the… Read More
2021-03-02 22:43
Oracle has quite a few features for storing and working with JSON data. In this guide, you’ll learn: What JSON is and why you might want to use it Creating a table to store JSON data H… Read More
2021-02-28 20:35
Do you want to practice your SQL, database, or data analysis skills? If so, you’ll need some data, or a data set, to work on. On this page, you can find a list of several hundred data… Read More
2021-02-24 23:04
SQL Server has quite a few features for storing and working with JSON data. In this guide, you’ll learn: What JSON is and why you might want to use it Creating a table with a JSON fiel… Read More
2021-02-23 19:54
SQL injection is a type of vulnerability that software developers aim to avoid. In this guide, you’ll learn: what SQL injection is examples of SQL injection how to prevent SQL injectio… Read More
2021-02-17 19:26
Indexes in SQL are an important part of the language. But why is that? What are SQL indexes? And why should you know about them? I’ll cover all of that in this guide. I’ll also s… Read More
2021-01-21 11:00
The SQL MIN function is used to find the lowest or minimum value. Learn how to use it and see some examples in this article. Table of Contents What is the SQL MIN Function? SQL MIN Syntax Pa… Read More
2021-01-17 10:00
SQL constraints are a feature that allow you to create rules that improve the quality of your data. Learn all about them in this guide. Table of Contents What is a Constraint and Why Should… Read More
2021-01-12 11:00
SQL aggregate functions are very useful and are some of the most commonly used functions. Learn all about SQL aggregate functions are and what they do in this article. Table of Contents What… Read More
2021-01-12 11:00
The SQL AVG function allows you to find the average value from the specified values. Learn how to use it and see some examples in this article. Table of Contents What is the SQL AVG Function… Read More
2021-01-10 11:00
The SQL MAX function can be used to find the highest number in a list of numbers. Learn how to use it and see some examples in this article. Table of Contents What is the SQL MAX Function? S… Read More
2021-01-07 11:00
The SQL SUM function can be used to add numbers together. Learn how to use it and see some examples in this article. Table of Contents What is the SQL SUM Function? SQL SUM Syntax Parameters… Read More
2020-10-27 19:30
MySQL has quite a few features for storing and working with JSON data. In this guide, you’ll learn: What JSON is and why you might want to use it Creating a table with a JSON field How… Read More
2020-10-19 19:34
SQL is a common language to learn when working with software. But once you learn the basics, you’ve probably got a lot of questions about different ways to do things. How should I form… Read More
2020-10-12 20:29
Do you have a slow SQL query? If so, you’re in the right place. In this article, you’ll learn a range of reasons why a SQL query may be slow and how to fix them. There may be a f… Read More
2020-09-29 07:05
Do you need to save your results from a MySQL query to a CSV or text file? It’s easy to do in MySQL. You can do this using an IDE or the command line, using a built-in MySQL command. L… Read More
2020-09-17 23:08
Are you working on a MySQL database and need to import CSV data? I’ll show you how to do this in MySQL Workbench in this guide.   Prerequisites To use the MySQL Workbench import C… Read More
2020-09-15 22:54
Are you looking for places to practice SQL online? This list contains many different websites that have SQL practice functionality.   SQL Practice Websites Each of these websites allow… Read More
2020-09-13 20:21
In this guide, you’ll learn all about the ROW_NUMBER function in SQL Server.   What is the SQL ROW_NUMBER Function? The ROW_NUMBER function in SQL Server is a function that adds a… Read More
2020-08-29 21:20
Once you create a table in SQL, you may want to rename it. This might happen if you are creating a new table to replace it, or have come up with a better name for it. In this article, you&rs&hell…Read More
2020-08-13 03:10
Working with dates is something you’ll do a lot in MySQL. It helps to understand the different date data types and many of the functions that can be used with them. In this guide, we&r&hell…Read More
2020-07-20 20:06
What is an SQL window function? Why should you know about it? And what can it help you with? You may have heard of SQL window functions before, or they may be completely new to you. Learn al… Read More
2020-07-15 19:55
Do you need to find the current date using SQL? There are a few ways to do this in the various database vendors. Let’s take a look at them. Summary Here’s a summary of how to get… Read More
2020-07-15 05:05
SQL, or Structured Query Language, contains a range of commands for interacting with the database. This article lists all of those commands, what they do, and what they look like. All of the… Read More
2020-07-14 21:24
Creating a database is one of the first things you do when setting up a new project or installing database software. Whether you’re using Oracle, SQL Server, MySQL, or PostgreSQL (or a… Read More
2020-07-08 19:50
Do you need to insert multiple rows into an SQL database? You could do that separately using INSERT statements, but there are a few problems with this. Learn what these problems are and how… Read More
2020-07-04 23:52
INT is short for integer, and is a group of data types in many databases that store numbers. There are many INT data types in the major SQL databases. In this guide, you’ll see all of… Read More
2020-01-14 11:00
The SQL Server DATEDIFF function lets you find the difference between two dates in a range of different units. Learn how to use it and see a range of examples in this guide. Purpose of the S… Read More
2020-01-10 11:00
Do you need to convert data in SQL Server? Looking for the format codes for the CONVERT function? Learn all about the SQL Server CONVERT function in this guide. What Is the SQL Server CONVER… Read More
2020-01-09 11:00
Many programming languages allow you to comment out code so that it does not run. SQL allows comments as well. Learn how to add SQL comments in this article. What is an SQL Comment? A commen… Read More
2020-01-08 11:00
Are you looking for an ETL or data integration tool? Look no further. This list has all of the currently available ETL tools. Use this for your research to help you decide which tool to use… Read More
2020-01-07 11:00
Are you considering using either MySQL or PostgreSQL for your next project? Read this article to find out the differences between these two databases and help decide which one to use. Postgr… Read More
2020-01-07 09:00
The Oracle ALTER TABLE statement allows you to make changes to an existing table. Learn how to use it and see some examples in this guide. This article applies to Oracle, SQL Server, MySQL… Read More
2020-01-06 11:00
Data warehouses are an important part of a business. As a developer, you’ll be involved in the data warehouse in one way or another: creating it, designing it, accessing it, or working… Read More
2020-01-05 11:00
How can you delete a table in SQL? Learn how to do this by using the SQL DROP TABLE statement in this article. This article applies to Oracle, SQL Server, MySQL, and PostgreSQL. Table of Con… Read More
2020-01-04 11:00
The SQL INSERT INTO statement is one of the most popular commands in SQL, and it’s one of the first commands you learn to use. Read how to insert data and how to use the full functiona… Read More
2020-01-02 11:00
Have you ever needed to update data that was already in a table? Learn how to do this with the SQL UPDATE Statement. This post applies to Oracle, SQL Server, MySQL, and PostgreSQL. What Is t… Read More
2019-12-30 11:00
PostgreSQL is a free and open-source database management system. It’s commonly referred to as an alternative to MySQL or MariaDB. Are you thinking about using PostgreSQL for your own p… Read More
2019-12-23 21:10
The concept of NULL is something you should know about when working with databases. In this article, you’ll learn all about NULL: what it is, why it’s different, how you can chec… Read More

Share the post

Database Star

×

Subscribe to Database Star

Get updates delivered right to your inbox!

Thank you for your subscription

×