answersLogoWhite

0

What else can I help you with?

Continue Learning about Basic Math

What would happen if man uses 100 percent of his brain?

Magic would happen.


What are the parts of a basic SQL query?

The basic parts of a SQL Select query are: SELECT column names FROM table name WHERE conditions ORDER BY column names The basic parts of an insert query would be: INSERT INTO table name (VALUES) The basic parts of a delete query would be DELETE FROM table name WHERE conditions The basic parts of an update query would be UPDATE TABLE table name SET column name = value WHERE conditions


What is the difference between insert and overwrite?

Insert allows to insert new text into existing text, without deleting the existing text. Overwrite writes overthe existing text with the new text.For example, if my cursor was at the beginning of the word "apple", and I typed "bad", then in insert mode I would now have the text "badapple", but in overwrite mode I would have the text "badle".


What does each column in a database represent?

Each column in a database table represents an attribute reg. the data that is held in that table. For ex: Table Employee can contain employee number, name, age, date of joining etc. Each of these items would be stored as individual columns in the Employee table.


What does each column in database represent?

Each column in a database table represents an attribute reg. the data that is held in that table. For ex: Table Employee can contain employee number, name, age, date of joining etc. Each of these items would be stored as individual columns in the Employee table.