You can create a table in the database by issuing the correct DML for it .
If you create a team that creates a new table for you, you can fill it out.
For instance:
CREATE TABLE dbo.myNewTable
id INT NOT NULL IDENTITY (1,1),
text VARCHAR (50) NOT NULL
Not knowing which database and how you connect to it, it is difficult to give more detailed information.
source
share