• Payment Plugins Poll

    We need your feedback on the need for updated payment plugins. Please go here and give us your feedback.

  • Joomla 5.1

    For running J!5.1 you must install Fabrik 4.1
    See also Announcements

  • Subscription and download (Fabrik 4.1 for J!4.2+ and J!5.1) are working now

    See Announcement
    Please post subscription questions and issues here

    We have resolved the issue with the J! updater and this will be fixed in the next release.

Handy SQL Snips

  • Views Views: 9,782
  • Last updated Last updated:
  • These are to be used only when necessary as most of these actions can be achieved via Fabrik itself.

    Please only use these if you are comfortable that you know what they are doing.

    Insert data into columns​

    SQL:
    INSERT INTO your_table (column1_name, column2_name, column3_name) VALUES (1, 'another value', 450);

    Insert data into multiple columns​

    SQL:
    INSERT INTO your_table (item_name, item_color)
    VALUES ('a boingle', 'blue'),
    ('a doingle', 'red'),
    ('a foingle', 'yellow'),
    ('a poingle', 'aqua'),
    ('a qoingle', 'green'),
    ('a shoingle', 'purple'),
    ('a loingle', 'orange');

    Delete a column​

    SQL:
    ALTER TABLE your_table DROP COLUMN column_name;

    Change the ordering of your columns in the database table​

    SQL:
    ALTER TABLE table_name CHANGE field_name field_name INT(6) AFTER another_field;
Back
Top