Posts by Nádia Teles • 91 points
4 posts
-
0
votes1
answer39
viewsQ: SQL VIEW Query
Good morning. I need help solving a query question in the view. I need help creating this view. Follows the table: CREATE TABLE [dbo].[Controle]( [ID] [int] IDENTITY(1,1) NOT NULL, [DataHora]…
sql-serverasked Nádia Teles 91 -
0
votes1
answer115
viewsQ: Image file encryption with c#
Hello. I receive an array of bytes containing the image. I need to record this image in an encrypted file and not the encrypted content and save it to directory. How to do this directly without…
-
2
votes2
answers210
viewsQ: Add Identity field in already filled table
How do I resolve the situation below: I have a table where the data were entered in the following order: INSERT INTO teste(Nome) VALUES('C') INSERT INTO teste(Nome) VALUES('D') INSERT INTO…
sql-serverasked Nádia Teles 91 -
6
votes1
answer57
viewsQ: select with order by
I have a simple table with only one text field, no field auto increment and indexes CREATE TABLE teste (Nome varchar(30) NOT NULL) I inserted the information in this table in the following order:…