Autoreply database
![]() |
Can I return a random row from a database table when an SMS comes in? |
Yes, you have to create a query in the
autoreply SMS script file that
returns a random row.
Select a random row with MySQL: SELECT column FROM table ORDER BY RAND() LIMIT 1 Select a random row with PostgreSQL: SELECT column FROM table ORDER BY RANDOM() LIMIT 1 Select a random row with Microsoft SQL Server: SELECT TOP 1 column FROM table ORDER BY NEWID() Select a random row with IBM DB2 SELECT column, RAND() as IDX FROM table ORDER BY IDX FETCH FIRST 1 ROWS ONLY Select a random record with Oracle: SELECT column FROM ( SELECT column FROM table ORDER BY dbms_random.value ) WHERE rownum = 1 | |
![]() |
Can I execute more then one SQL statements if an SMS comes in? |
Yes, you can put multiple SQL commands into the Autoreply script.
|
More information
- Conceptos básicos de SMS
- ¿Por qué el SMS es tan exitoso?
- Aplicaciones de ejemplo de mensajería SMS
- Formatos de números SMS
- Tipos de mensajes SMS y MMS
- Centro de Servicios de Mensajes Cortos (SMSC)
- SMS Gateway
- Sistema SMS bidireccional - Ozeki NG
- Requisitos de hardware y software
- 2.2 Requisitos de red
- Ozeki SMS Gateway - Información general sobre el software
- Enrutamiento
- Tipos de mensajes
- Informes de entrega
- Módem GSM
- SMPP
- CIMD2
- UCP/EMI
- HTTP
- SMTP
- API
- SQL a SMS
- HTTP a SMS gateway
- Reenvío de correo electrónico a SMS y SMS a correo electrónico
- Base de datos de respuestas automáticas
- Rendimiento y escalabilidad
- Registro
- Resolución de problemas
- Control de costos y estadísticas de uso
- Versión de prueba del SMS Gateway
- Preguntas comerciales