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 7770983
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T16:32:18+00:00 2026-06-01T16:32:18+00:00

I can never seem to be able to create MySQL tables with columns of

  • 0

I can never seem to be able to create MySQL tables with columns of the type TEXT. Here’s my MySQL:

CREATE TABLE factions(id INT NOT NULL AUTO_INCREMENT, PRIMARY KEY(id), name VARCHAR(16) NOT NULL, desc TEXT NOT NULL, admins TEXT NOT NULL, mods TEXT, members TEXT, land TEXT, enemies TEXT, allies TEXT)

When it’s run, I get this:

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 'desc text NOT NULL, admins text NOT NULL, mods text, members text, land text, en' at line 1

I can’t figure out what’s wrong! I’m using Java if it makes any difference.

  • 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-01T16:32:19+00:00Added an answer on June 1, 2026 at 4:32 pm

    desc is a reserved word and shouldn’t be used as a name of a column. You can use desc as a name of a column, but if you do, you must always wrap it in back-ticks.

    CREATE TABLE factions(
       id INT NOT NULL AUTO_INCREMENT,
       PRIMARY KEY(id), 
       name    VARCHAR(16) NOT NULL, 
       `desc`  TEXT NOT NULL, 
       admins  TEXT NOT NULL, 
       mods    TEXT, 
       members TEXT, 
       land    TEXT, 
       enemies TEXT, 
       allies  TEXT
    );
    

    The above is tested and works, but since you’ll always have to wrap it in back-ticks (in every INSERT, UPDATE and DELETE) you may want to change the name, or just get in the habit of wrapping all fields in back-ticks, which has other advantages.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can't seem to be able to disable ViewState for controls that I add
I can never remember the differences in regular expression syntax used by tools like
I can never remember the number. I need a memory rule.
I can never remember the order of the shorthand property for setting the margin
I can never remember how I do this because it comes up so infrequently
Most of time we represent concepts which can never be less than 0. For
I have been using ASP.NET for years, but I can never remember when using
I am trying to stop my form from submitting yet I never can get
can ASP.NET controls be used with generics? Never seen this done and want a
How can I rewrite our commit history to ensure certain keywords never appear? Background:

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.