Posts by Ruivens • 39 points
3 posts
-
1
votes1
answer517
viewsA: Database for messaging system with comments and responses
I suggest you create a table to store the posts and another table to store the answers, containing a foreign key relating to the table of posts. You can also include another key relating to the…
-
-1
votes2
answers629
viewsA: Response write inside Response write
Ronaldo, unfortunately what you want to do is not possible, at least not directly like this. Everything you put inside Response.Write will be displayed as text. Whatever is in html tag format will…
-
3
votes1
answer345
viewsQ: SQL Like without considering the order of the parameters
I need to make a comparison between two tables to find out if the address of table A is present in table B. Example: Table A has a record with the ENDERECO field with the value "RUA FULANO DE TAL 67…