Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6926331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:54:15+00:00 2026-05-27T10:54:15+00:00

I am trying to create a trigger wherein it will insert a new row

  • 0

I am trying to create a trigger wherein it will insert a new row to a ADMIN_EMAIL_DOMAINS table.

CREATE TRIGGER email_domain_insert AFTER INSERT ON USERS
FOR EACH ROW 
BEGIN
    IF NOT EXISTS (SELECT * FROM (SELECT DISTINCT SUBSTRING_INDEX(USR_EMAIL, '@', -1) as domain FROM USERS) as a WHERE a.domain = SUBSTRING_INDEX(NEW.USR_EMAIL, '@', -1)) THEN
        INSERT INTO ADMIN_EMAIL_DOMAINS (DOMAIN_NAME, VISIBLE) VALUES (SUBSTRING_INDEX(NEW.USR_EMAIL, '@', -1), 1);
    END IF;
END //

What I would like to do is everytime I create a new user, i would check its email extension and then insert it to ADMIN_EMAIL_DOMAINS table if that DOMAIN_NAME is not yet existing.

My problem is it has an SQL error when i tried to execute it

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your      MySQL server version for the right syntax to use near '' at line 5 

Am I missing something?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T10:54:16+00:00Added an answer on May 27, 2026 at 10:54 am

    I could suggest you another way – make field DOMAIN_NAME as unique and try to insert new domains into the table ADMIN_EMAIL_DOMAINS with IGNORE option, e.g. –

    DELIMITER $$
    
    CREATE TRIGGER email_domain_insert
      AFTER INSERT
      ON users
      FOR EACH ROW
    BEGIN
      INSERT IGNORE INTO ADMIN_EMAIL_DOMAINS (DOMAIN_NAME, VISIBLE) VALUES (SUBSTRING_INDEX(NEW.USR_EMAIL, '@', -1), 1);
    END    
    
    DELIMITER ;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

delimiter $$ CREATE TRIGGER carslibrary_trigger AFTER insert ON carslibrary FOR EACH ROW BEGIN insert
I'm trying to create a trigger that will do the following. After insert on
DELIMITER $$ CREATE TRIGGER stock_empty AFTER UPDATE on products FOR EACH ROW DELETE FROM
I am trying to create a BEFORE INSERT trigger that will check the incoming
I am trying to create a Trigger, that will update the History Table with
I'm trying to create a trigger for my table which automatically adds a published
I'm new to Android & SQlite. I was trying to create the following trigger
I'm trying the following : CREATE TRIGGER checkgrade ON [Homework4part3].[dbo].[Enrollment] FOR INSERT AS IF
I am trying to create a trigger. It is supposed to update any new
I am trying to create a trigger that will update a GEOMETRY column based

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.