pixie icon indicating copy to clipboard operation
pixie copied to clipboard

Select with special characters

Open Deepak-nb opened this issue 6 years ago • 2 comments

Select query not working with special characters like( &,(), etc) in where clause.

Deepak-nb avatar Feb 12 '19 06:02 Deepak-nb

Can you provide examples? What dabatase are you using?

TCB13 avatar Feb 12 '19 08:02 TCB13

I am using mysql database. example: $regional_data_tbl="abc"; $report_id="1234"; $node_data="Axillary (Level I, II & III) - Left";

$saved_data = $conn->table($regional_data_tbl)->setFetchMode(PDO::FETCH_ASSOC)->where('report_id', ' = ', $report_id)->where('specimen_id', ' = ', $val->id)->where('level_node', ' = ',$node_data)->get();

Deepak-nb avatar Feb 12 '19 15:02 Deepak-nb