answersLogoWhite

0

select * from "table-name" where month="required month";

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the name of a statement written to retrieve specific data from a table?

The name of a statement written to retrieve specific data from a table is a SQL SELECT statement.


Selecting data by means of a query?

To select data using a query, you need to use a SELECT statement in SQL. Specify the columns you want to retrieve data from and the table where the data is located. You can also apply conditions using WHERE clause to filter the data before retrieving it.


What is the command to retrieve deleted data from any table in SQL?

rollback command can retrieve deleted data from a table, provided commit has not been performed after deleting the data. both rollback and commit are transaction control statements.


Sql command to retrive all data froma table?

The SQL command that can be used to retrieve all data from a table is the SELECT Ex: Let us say we have a table called employee_master which contains 3 columns emp_name, emp_number, date_of_joining you can retrieve all the data by using the below command SELECT * FROM employee_master or SELECT emp_name, emp_number, date_of_joining FROM employee_master


Could you please provide the data from the table labeled "Sales Report" for the month of October?

The data from the "Sales Report" table for the month of October is as follows: insert data here.


How do you validate and retrieve data from database?

How do you validate and retrieve data from database?" How do you validate and retrieve data from database?"


How is data retrieved from MS Access?

You can retrieve data in many ways, like using queries, reports and forms, or by just looking at the table and maybe using filters.


How do you retrieve data?

Data Miner


How can a graph of data be more information than a table of the same data?

It does not. In fact, it usually contains less information because some of the precision of the data in the table may not be easy to retrieve from the graph. However, many people (but not all) find it easier to get a summarised version of the information from a graph than from a table.


What is the advantage of organizing data on a table?

You can retrieve information quickly, unlike a graph. It is also easier to compare, and to find the rate of change.


What allows you to pull data from a table so that you can analyze or manipulate the data further?

You can use SQL queries to pull data from a table. By writing specific commands, you can retrieve the desired information and manipulate it as needed for further analysis. This provides you with flexibility and control over the data retrieval process.


How do you retrieve records that have no data in SQL?

You can write a query to look through specific fiends and check if there is any data in the field as so. SELECT * FROM table WHERE field1 = '' OR field2 = '' ... and so on