0
I created a Database and it contains two tables, I put the script:
Table Client
Create table Cliente( 
    Cod_Cliente int Primary key 
    NOME Varchar(50)
    SOBRENOME Varchar (50)
) 
GO 
Table Size of the Company
Create table Porte_Empresa( 
   PEQUENO float 
   MÉDIO float 
   GRANDE float
)
GO 
BD: Create Database CADASTRO
The point is I’m not seeing the tables on the left side when I do the BD expansion even giving refresh.

You can use
Selecttables? Post the script you used!– Paulo Ricardo
Put the Scrip you used to try to create the database and table.
– Paulo Ricardo
Unfortunately not. I created two tables:Customer and Company Size. Client table script: Create table Client( Cod_client int Primary key NAME Varchar(50) LAST NAME Varchar (50) ) GO Enterprise Size Table Create table Porte_company( SMALL float MEDIUM FLOAT LARGE float ) GO BD: Create Database REGISTER
– Eric Rosário