tags:

views:

127

answers:

1

I never seen SQL like that before:

SELECT *            
  FROM !.tables
 WHERE id = !

What's it doing?

+3  A: 

It looks like a parametrized query, however I've never seen exclamation points being used as placeholders. What library is the query being run through?

Matti Virkkunen
PHP using mysql_query if the (old) tags are anything to go by.
R. Bemrose
I have a feeling the mysql-query tag doesn't mean that.
Matti Virkkunen