Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How To Select All Columns of All Rows from a Table
How To Select All Columns of All Rows from a Table? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY
✍: FYIcenter.com
The simplest query statement is the one that selects all columns of all rows from a single table: "SELECT * FROM tableName;". The (*) in the SELECT clause tells the query to return all columns. The missing WHERE clause tells the query to return all rows in specified table. The tutorial exercise below returns all columns and all rows from table "fyi_links":
mysql> SELECT * FROM fyi_links; +-----+-------------------+-------+--------+--------------- | id | url | notes | counts | created +-----+-------------------+-------+--------+--------------- | 101 | dev.fyicenter.com | NULL | 0 | 2006-04-30 00: | 102 | dba.fyicenter.com | NULL | 0 | 2006-07-01 12: | 103 | sqa.fyicenter.com | NULL | NULL | 2006-07-01 12: +-----+-------------------+-------+--------+--------------- 3 rows in set (0.00 sec)
2007-05-11, 6199👍, 0💬
Popular Posts:
what is a service contract, operation contract and Data Contract? - part 1 In the below sample we ha...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...