Posts by Francisco Carlos Carvalho Jr • 103 points
6 posts
-
3
votes3
answers718
viewsA: How to convert date to date in select query?
I got it just the way I wanted it: SELECT DATE_FORMAT(dt_abertura,"%d/%m/%Y") AS Data, count(1) as qtd FROM tabela group by DATE_FORMAT(dt_abertura,"%d/%m/%Y") order by date(dt_abertura); See the…
mysqlanswered Francisco Carlos Carvalho Jr 103 -
0
votes3
answers718
viewsQ: How to convert date to date in select query?
Follow the picture below: Follows the code: select dt_abertura, count(1) as qtd from tabela group by dt_abertura; How to convert date to time (2017-09-23 16:24:55) for date only (23-09-2017) ? I…
mysqlasked Francisco Carlos Carvalho Jr 103 -
2
votes2
answers368
viewsQ: How to put this kind of Hover?
The Hover I want is this : http://prntscr.com/i4vr9n My Hover is like this: http://prntscr.com/i4vrsk My css and html html{ font-family: sans-serif; } header{ width:100%; height:58px;…
-
0
votes2
answers1683
viewsQ: How to center the image?
Picture I want to fix, the logo is all right -> http://prntscr.com/i2qrez While on mobile -> http://prntscr.com/i2qrl0 And on the laptop -> http://prntscr.com/i2qsdw are correct. my html…
-
1
votes1
answer152
viewsQ: I can’t leave the menu bar properly
My html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ensintech</title> <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">…
-
1
votes1
answer1337
viewsQ: How to remove the white bar from the background?
my html <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Ensintech</title> <link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css">…