xxxxxxxxxx
toArray := strings.Split("you must be pray before learn anything", " ")
fmt.Printf("this is array %v and type data is %v", toArray, reflect.TypeOf(toArray))
xxxxxxxxxx
SELECT * FROM Customers LIMIT 3;
#Returns 3 records
SELECT * FROM Customers LIMIT 0, 3;
#Returns 3 records starting from 0
xxxxxxxxxx
LIMIT N,1 --> SELECT 1 ROW AFTER SKIPPING N ROWS
select * from Employee limit 3,2; -- select 2 rows after 3 rows
select * from Employee limit 1; -- select 1 row
select * from Employee limit 3; -- select 3 rows
xxxxxxxxxx
.circle-preloader {
display: block;
width: 50px;
height: 50px;
border: 4px solid #444;
border-bottom-color: #888;
border-radius: 50%;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
animation: spin .75s infinite linear;
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}