About 56 results
Open links in new tab
  1. What is the best way for user to be able to select a Category and ...

    Jan 19, 2022 · Display a single Category field: Allow the user to search through both Categories and Subcategories, but they should only be able to select one - either a Category or Subcategory: If the …

  2. SQL Query to select products from all categories of One Parent

    Mar 28, 2012 · select * from products p inner join categories cc on cc.category = p.category inner join categories cp on cp.category = cc.parentcategory where cp.category = 'FRUITS' If this needs to be a …

  3. Select category in the form using select - Stack Overflow

    In this app I have page with post ( title, category_id, description, image) But now on page with post I need create form which add new post in my local server. This form have input for title, description, …

  4. sql - Select products where the category belongs to any category in …

    Nov 24, 2011 · ) select distinct * from catCTE That should select the category whose name is 'Processors' and any of it's descendents, should be able to use that in an IN clause to pull back the …

  5. select - Selecting multiple rows from specific categories in SQL ...

    Dec 27, 2012 · SELECT DISTINCT ASSET.NAME AS ASSET_NAME, ASSET_TYPE.NAME AS ASSET_TYPE, ASSET_TYPE.ASSET_CATEGORY AS CATEGORY FROM ASSET, ASSET_TYPE …

  6. mysql - SQL query for a selection from a table with categories and ...

    Item can be active and not active (0 or 1). You need to make a query and select from the Category table all the main categories (which have parent_id = null) that have active items (is_active = 1) and which …

  7. select - How can I show a category name in html dropdown list?

    I have a dropdown list in a form. There are many items. I want to show the category names in the dropdown list which the users will be able to see but won't be able to select. So far I have this. ...

  8. How to create category option using html css and js

    Feb 2, 2024 · I want users to be able to select a category from a dropdown menu when they click on the category option. I'm looking for guidance on how to implement this functionality using HTML, CSS, …

  9. Category and Sub category in one column in sql - Stack Overflow

    Apr 19, 2019 · How we can show category and subcategory in one column in sql. Both columns are present in same table TableA. Example: TableA ...

  10. Display subcategories in HTML select box - Stack Overflow

    Feb 26, 2014 · Learn how to display subcategories in an HTML select box with this Stack Overflow post.