Error logs on SQL, Mysql
- I) Mysql query of one table Mysql query of one table)
-
- II) sequence on query related to SELECT, WHERE,ORDER,LIMIT sequence on query related to SELECT, WHERE,ORDER,LIMIT)
- I) Mysql query of two tables Mysql query of two tables)
- I) Mysql query of three tables Mysql query of three tables)
I) Mysql query of one table
II) sequence on query related to SELECT, WHERE,ORDER,LIMIT
- SELECT>WHERE>ORDER>LIMIT
SQL
SELECT * FROM Customers
WHERE Country='Germany'
ORDER BY CustomerID DESC
LIMIT 3;