Posts by Degas • 14 points
3 posts
-
-1
votes2
answers45
viewsA: Plan properties in a single table
At this point I can see 3 observations: The way the class is declared, 01 person will have only 01 phone, when in fact, I imagine it should be several. For this case, in person the correct thing…
-
0
votes2
answers970
viewsA: SQL SERVER - Substring
Luiz, see if it helps: declare @document varchar(64), @charinicio int = 0 select @document = '[email protected]'; set @charinicio = (select CHARINDEX('@', @document)) select SUBSTRING(@document,…
-
0
votes1
answer36
viewsA: work with images in sql server + Asp net
Good afternoon!! I have worked with situations like this and after a good search and considerations, I have as an idea that you just save the image address in the database and save the images in a…