0 votes
in Sql by
What is a database table?

1 Answer

0 votes
by
Database table: Table contains records in the form of rows and columns. A permanent table is created in the database you specify and remains in the database permanently, until you delete it.

Syntax:

Create table TableName (ID INT, NAME VARCHAR(30) )

Drop syntax: drop table TableName

Select Syntax: Select * from TableName
...