Posts by Luiz Carlos Coelho • 95 points
4 posts
-
1
votes0
answers140
viewsQ: Bugado design! (but with cache works, "unlock")
I was setting up a table with scroll and I came across the following bug in css: If I press f5 2 times the table ends up fixing and stays like this: When I clear the cache(ctrl + f5) the error comes…
-
1
votes2
answers2957
viewsA: I need a new Random number for each line in an sql(server) query
select x.aleatorio as randomico1, x.aleatorio as randomico2 from (select CAST(RAND(CHECKSUM(NEWID())) * 10 as INT) + 1 as aleatorio, tb.* from saluno tb) x order by…
-
4
votes2
answers2957
viewsQ: I need a new Random number for each line in an sql(server) query
I use the sql server. I need to use a Random number in several different columns (the same Random number) but I want a new Random number for each row... for example, let’s assume that TABELAX has…
-
3
votes1
answer224
viewsQ: How to show result between 3 tables?
I have these three tables; table_1 |---------------------| | ID1 | name | |---------------------| | 1 | 'xxxxx' | | 2 | 'xxxxxx' | | 3 | 'xxxxxxxx' | | 4 | 'xxxxxx' | | 5 | 'xxxxxx' |…