answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Where do we find the command to adjust space after a table for Microsoft?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you make a T chart on Microsoft Word?

From the Insert command, choose Make Table.


What command is used to create a table?

Tables are defined with CREATE TABLE command. Syntax of CREATE TABLE command is: CREATE TABLE ( [] []);


What is the difference between select into and createview command?

The SELECT INTO command creates a new table with data from an existing table whereas the CREATE VIEW command creates a view i.e., a virtual table from an existing table.


Which command is used to create a table?

CREATE TABLE command is used to create table. Syntax of creating a TABLE is: CREATE TABLE ( [] []); ex: create table emp (ecode integer, ename char(20));


What is drop command?

The "drop" command is typically used in programming or databases to remove a specific element or entity. For example, in SQL, you can use the "DROP TABLE" command to delete a table from a database. It is important to use this command carefully, as it permanently deletes the specified object.


What is 8MB unpartitioned space in Partition table of Windows Xp?

There is always 8 MB of unpartitioned space so that you can retain the ability to convert the drive to a dynamic volume. If you have already partitioned the drive from the following operating systems, the empty drive is hidden: MS-DOS Microsoft Windows 95 Microsoft Windows 98 Microsoft Windows 98 Second Edition Microsoft Windows NT 4.0 Microsoft Windows 2000


How is a table made up in a database?

A table in database can be created using create table command . Create command comes under data manipulation language.


Off the table or off of the table?

off the table implies the use of the unexpressed second person subject 'you' and an imperative command. YOU, off the table! off of the table implies the use of the unexpressed verb GET and an imperative command. Get off of the table.


Where does Microsoft word generates a table of figures from?

from file insert table


Which command is used to new table in the RDBMS?

In a relational database management system (RDBMS), the command for creating a new table is "CREATE TABLE". This is the standard in most SQL programs.


What is a record in Microsoft Access?

A record is a row of Table in Microsoft Access. It contains information about a particular item stored in a table (book, student e.t.c)


What is the means drop command?

The DROP table command of SQL lets you drop a table from database . The database requires you to empty a table before you eliminate from the database. But there is a condition for dropping a table ; it must be an empty table. syntax: 1st - delete from table-name; 2nd- drop table table-name;