So without normalisation in your personal opinion would this make the page and site run really slowly?
I do have another table with all the cleaning types in it with an id, but still my original table would have to have a clean_id, so the integers will be duplicated just the same.
And is that the shortest we can get the below?
clean1_id IN ('$carpet_cleaner1','$window_cleaner1') OR clean2_id IN ('$carpet_cleaner1','$window_cleaner1');
Is there no way I could say:
clean1_id OR clean2_id IN ('$carpet_cleaner1','$window_cleaner1');
Unfortunately the above doesn't work!
Or anything similar?