close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Best Method - check if all fields in a Record are not null or empty

Thread began 4/23/2016 1:56 pm by Steve | Last modified 4/25/2016 10:44 am by Ray Borduin | 722 views | 3 replies |

Steve

Best Method - check if all fields in a Record are not null or empty

I have a record from a MySQL Database that needs to be validated to see if all the fields have any value or return some alert.

Is the best way to put all the field values into an array and then check the SUM where IS NOT NULL or Empty to see if it matches the qty of selected fields?

EXAMPLE: $result = | Value | NULL | NULL | Value | EMPTY |

In this example the Record has values from 5 Fields and 2 of those Fields are not Null or Empty

I need Validate to see when all 5 Fields have some value.

So it is a specific Record not the whole RecordSet and the goal is to see if all the fields have a value Or do Something.

Sign in to reply to this post

CraigRBeta Tester

Are you familiar with the mysql LEAST function ?

eg SELECT LEAST (Field1, Field2, Field3, Field4) AS AnyNull FROM tblname

If any argument is NULL, the result is NULL.

http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#function_in

Sign in to reply to this post

Steve

Thanks CraigR

Yes, but I used the GREATEST function to solve the problem:

SELECT *
FROM table1
WHERE GREATEST(col1, col2, col3, col4) IS NOT NULL

<?php if($recordset->TotalRows != 0) echo ' (<span class="red">All necessary Reqmts in place</span>)'; ?>


GREATEST() returns NULL if any argument is NULL.

Sign in to reply to this post

CraigRBeta Tester

Glad you got it sorted.

Either way should work. I am pretty sure LEAST returns null if any value is null too.

;-)

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...