1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-03 20:57:36 +02:00

examples: removed unnecessary delimiters []

This commit is contained in:
David Grudl
2010-08-03 17:12:34 +02:00
parent beee4ee4b7
commit 3f594756e0
6 changed files with 36 additions and 36 deletions

View File

@@ -16,9 +16,9 @@ dibi::connect(array(
$res = dibi::query('
SELECT * FROM [products]
INNER JOIN [orders] USING ([product_id])
INNER JOIN [customers] USING ([customer_id])
SELECT * FROM products
INNER JOIN orders USING (product_id)
INNER JOIN customers USING (customer_id)
');