Changes between Version 20 and Version 21 of WikiTableMacro


Ignore:
Timestamp:
May 2, 2013, 3:55:13 AM (11 years ago)
Author:
Ivanelson Nunes
Comment:

Just replace the single quotes with double quotes in SQL examples.

Legend:

Unmodified
Added
Removed
Modified
  • WikiTableMacro

    v20 v21  
    1717{{{
    1818#!SQLTable
    19     SELECT count(id) as 'Number of Tickets'
     19    SELECT count(id) as "Number of Tickets"
    2020    FROM ticket
    2121}}}
     
    4141{{{
    4242#!SQLScalar
    43     SELECT count(id) as 'Number of Tickets'
     43    SELECT count(id) as "Number of Tickets"
    4444    FROM ticket
    4545}}}