Below is the code for creating the table and inserting some data for testing.
CREATE TABLE [dbo].[tb_empresas]( [data] [date] NULL, [nome] [varchar](100) NULL, [valor] [decimal](18, 2) NULL ) ON [PRIMARY]
INSERT INTO tb_empresas (data, nome,...
asked by
10.03.2014 / 15:29