Quote:
what’s the alternate to using views in older mysql?
It depends on why you originally intended to use VIEWS.
Also it depends on the MySQL version and the amount of data and the server resources available to you.
With MySQL 4.1 you might be able to use subqueries to reach your objective. For instance you could use a subquery to create a (temporary) table. For instance CREATE … TABLE … SELECT … WHERE somevariable LIKE (SELECT ….. )
With MySQL <= 4.0 I can only think of splitting your tables into smaller tables.