| 1 | SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES | | 127 | 127 | 23 |
| 2 | SELECT COLUMN_NAME as Field, DATA_TYPE as Type, COL_LENGTH('Profession', COLUMN_NAME) as Length, IS_NULLABLE As [Null], COLUMN_DEFAULT as [Default], COLUMNPROPERTY(OBJECT_ID('Profession'), COLUMN_NAME, 'IsIdentity') as [Key], NUMERIC_SCALE as Size FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Profession' | | 5 | 5 | 10 |
| 3 | SELECT id,controller,action,condition,level,title,
seo_heading,seo_text,no_cache,keywords,
description,robots,googlebot,weight,status
FROM seo
WHERE controller = 'miscellaneous' AND action = 'redirectOS' AND status = 'A' ORDER BY [level] DESC,weight DESC | | 0 | 0 | 10 |
| 4 | SELECT id,controller,action,condition,level,title,
seo_heading,seo_text,no_cache,keywords,
description,robots,googlebot,weight,status
FROM seo
WHERE controller = 'home' AND action = 'index' AND status = 'A' ORDER BY [level] DESC,weight DESC | | 1 | 1 | 10 |