Tag: Open Source

Community

An Update On Views

(Peter Eisentraut) A long time ago, in a text book far away, someone described the following (relational) database design approach: Put all your data in tables, normalized and so on, as you’d expect. An top of each table, create a view. The database clients only access the views. As the applicati

Community

Debugging MySQL Functions

(Michael McLaughlin) Somebody, who read this post on Debugging MySQL Procedures, asked why the strategy of selecting a string literal didn’t work in a MySQL function. That’s easy, they’re not designed to support a SELECT statement, only a SELECT-INTO statement.

Community

MySQL INSERT Statement Variations

(Rob Gravelle) In the MySQL Data Manipulation and Query Statements article, we looked at two variations of the INSERT INTO statement. If you recall, we utilized the INSERT statement to populate tables, rather than the Data Manipulation Language (DML) SELECT…INTO command, which is unsupported in My