
Untitled
By: a guest on
Jun 26th, 2012 | syntax:
None | size: 0.83 KB | hits: 14 | expires: Never
----- OUTPUT 1 : with Ravi's and query "select * from vertica;"
$VAR1 = [
[
'abc',
'234325'
],
[
'def',
'234325'
],
[
'ghi',
'98989'
],
[
'jkl',
'98989'
],
[
'mno',
'1103'
]
];
----- OUTPUT 2 : without Ravi's variable and query "select * from vertica;"
$VAR1 = [
[
'abc',
'234325'
]
];
----- OUTPUT 3 : with Ravi's variables and query "select * from vertica where col1 = \'def\';"
$VAR1 = [
[
'def',
''
]
];
----- OUTPUT 4 : without Ravi's variables and query "select * from vertica where col1 = \'def\';"
$VAR1 = [];