Difference between revisions of "Portable SQL/Statements/Data retrieval"

From Linuxnetworks
Jump to: navigation, search
(ini)
(joins)
Line 1: Line 1:
 
The SQL language uses SELECT statements for asking the database server to send results based on the conditions back to the client. Contrary to the data manipulation statements which were only extended slightly by the database vendors, the portability of SELECT statements becomes a nightmare very fast.
 
The SQL language uses SELECT statements for asking the database server to send results based on the conditions back to the client. Contrary to the data manipulation statements which were only extended slightly by the database vendors, the portability of SELECT statements becomes a nightmare very fast.
  
# [[Portable SQL/Statements/Data retrieval/Simple SELECT|Simple SELECT]]
+
* [[Portable SQL/Statements/Data retrieval/Simple SELECT|Simple SELECT]]
 +
* [[Portable SQL/Statements/Data retrieval/Join syntax|Join syntax]]
  
  
 
----
 
----
 
Back to [[Portable_SQL|Overview]]
 
Back to [[Portable_SQL|Overview]]

Revision as of 12:50, 22 September 2007

The SQL language uses SELECT statements for asking the database server to send results based on the conditions back to the client. Contrary to the data manipulation statements which were only extended slightly by the database vendors, the portability of SELECT statements becomes a nightmare very fast.



Back to Overview