Home > Back-end >  How to create a table of wildcards
How to create a table of wildcards

Time:07-04

I have a table called blacklisted_usernames. These are usernames with wildcards in them that aren't allowed to be registered onto my site.

create table blacklisted_usernames (
name varchar(64) not null
);

Some dummy data:

insert into blacklisted_usernames (name) values
('           
  • Related