This topic is locked
[SOLVED]

 QRCode from different column

3/26/2015 7:27:05 PM
PHPRunner General questions
S
schaet author

Hello, How can I create a QRCode based on the value from a different column?

For example I have a column 'Name' I want to display the actual name, but also the QRCode for it as well?
Thank you

Steven

C
copper21 3/27/2015

You can simply create an alias for that field. For example your query (in SQL) would look like this:
SELECT

name,

name AS QRCodeName,

...

FROM ...
This will generate another field called QRCodeName that carries the value of "name".
Hope this helps.

S
schaet author 3/27/2015



You can simply create an alias for that field. For example your query (in SQL) would look like this:
SELECT

name,

name AS QRCodeName,

...

FROM ...
This will generate another field called QRCodeName that carries the value of "name".
Hope this helps.


Great!! exactly what I was looking for! Thank you