answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Do you have to select the rows in a table in order to move them word?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Do you have a table without rows?

You can have a table without rows. It would be an empty table with no data. select (*)count from TABLENAME; 0 rows returned.


How do you select all columns of all rows from a table?

You select all columns of all rows from a table with the select * from table_name sql statement. Be careful, this can potentially be a very expensive, poor performance, network intensive type of operation - it is better to select only the columns and rows needed.


How are all rows in a table selected?

All rows & columns in a table can be selected by using the below query Select * from table_name If you do not have any where condition in the query then all rows will be selected.


What does selection means in oracle 10g?

get data of particular rows from the table. Criteria can be used to select the rows retrived


What is a relational operator that yields values from all rows in a table is called?

'select' operator


How many rows should you select if you want to insert two rows?

select 2 rows, the no. of rows you select will be the no. of rows to be inserted


How do you set up ascending and descending order in a table and a query?

I'm actually not familiar with Access, but I'll try to help. Usually the primary key will physically order the rows in a database table. In SQL-query you can use "order by" clause. The default order is usually ascending. You can also add "asc" or "desc" after the column name. Please do notice, primary keys are not for ordering rows. You should really let the database decide how to save the rows. You should always order the rows in your query (if needed), not modify or trust the physical order! select col1 from foo order by col2 select col1 from foo order by col2 desc, col3 asc


What is the sql query to retrieve records starting from 100 upto 1000 in sql server?

It helps to have a sample table when you're discussing this type of problem, so let's simply it a bit and make it a table of 5 rows where you want the second through the fourth rows. Here's a table of data: ID Name ========= 1 Row1 2 Row2 3 Row3 4 Row4 5 Row5 Let's call this table "tblSample" That being the case you could use the following SQL to extract the middle rows: SELECT TOP 3 FROM tblSample WHERE tblSample.ID NOT IN ( SELECT TOP 1 tblSample_2.ID FROM tblSample AS tblSample_2 ORDER BY ID) ORDER BY ID Assuming that your table is in a similar structure, you could select the results you asked for with this SQL: SELECT TOP 901 FROM tblSample WHERE tblSample.ID NOT IN ( SELECT TOP 100 tblSample_2.ID FROM tblSample AS tblSample_2 ORDER BY ID) ORDER BY ID


Sql select to return one value?

It depends on the DBMS MSSQL: SELECT TOP 1 column FROM table MySQL: SELECT column FROM table LIMIT 0,1 (start index, number of rows to get)


What clause should be used to display the rows of a table in ascending order of a particular column?

Order by


What are the horizon rows in the periodic table called?

The horizontal rows on the periodic table are called periods.


What are the steps to insert a table with 2 rows and 5 columns in MS Word?

Step 1 Go to the Table menu and select Insert Table. The Insert Table window opens.Step 2 Select the number of rows and columns you want in your table.Step 3 Select the column width (up to 22 inches) or choose Auto to have the column width adjust automatically, making the table extend across the width of the page.Step 4 Select the AutoFormat button to select one of Word's preformatted table styles. The Table AutoFormat window opens.Step 5 Click one of the styles in the Formats box in the upper-left side of the window.Step 6 Preview each format, after selecting it, in the Preview box in the upper-right side of the window.Step 7 To customize a preselected format, select or deselect the borders, shading, font, color, heading rows, first column, last row and last column boxes.Step 8 Select AutoFit, and Word will automatically fit the table to your page.