Autonomía digital y tecnológica

Código e ideas para una internet distribuida

Linkoteca. Archivo de navegación


In later versions of MySQL you can use the information_schema database to tell you when another table was updated:

[pre]SELECT UPDATE_TIME
FROM information_schema.tables
WHERE TABLE_SCHEMA = ‘dbname’
AND TABLE_NAME = ‘tabname'[/pre]

Compartir