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

  • SEARCH
  • Home
  • 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 7815025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T05:23:08+00:00 2026-06-02T05:23:08+00:00

I am using PHP backend, with MySQLi objects to use prepared statements. However, I

  • 0

I am using PHP backend, with MySQLi objects to use prepared statements. However, I have a problem, I need a query like:

IF ( SELECT count(*) FROM table <= 3)
   INSERT INTO table2 VALUES(5,2)
// dont do anything if (SELECT count(*) FROM table > 3)

It gives a syntax error at the begining and cannot understand what is wrong?

  • 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-06-02T05:23:09+00:00Added an answer on June 2, 2026 at 5:23 am

    Let MySQL to do the dirty work, and avoid as much communication with the database as you can.

    Go to 19.2. Using Stored Routines (Procedures and Functions) and learn those tricks similar to PL/SQL. You will find much more easier to get through problems, when you have multiple queries, which depend on each other.

    After some learning you will be able to write a stored procedure, that checks for a logical expression before inserting into a table.

    Something like that (syntax maybe out of control here – just example):

    CREATE PROCEDURE myProcedure(IN myCap INT) 
    BEGIN 
      DECLARE rowCount INT; 
      SELECT count(*) FROM table INTO rowCount;
      IF rowCount <= myCap THEN
        INSERT INTO [...]
      END IF;
    END;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm posting data using jquery/ajax and PHP at the backend. Problem being, when I
I have a webapp written in PHP using a MySQL database backend. This question
I am currently using various back-end services and I want to use PHP to
using php and mysql I have two tables, a users table and a profiles
Using Php I would like to extract the current Url of a page including
Using PHP ... This is for my personal use so I'm thinking maybe 3-4
Using PHP's Image and GD functions you can use the following method to finally
Here's my situation: using PHP and MySQL as my backend, jQuery and jsTree for
Greetings, I'm building my personal website using php. My standard approach is to use
I would like to do a site in PHP/MySQL using either Drupal/Joomla/Wordpress that allows

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.