What datatype in MySQL would be best to use for data that was in Memo on Microsoft Access?
Microsoft Access memo datatype to MySQL Datatype
7.2k Views Asked by suryll At
2
There are 2 best solutions below
0
Doozer Blake
On
I believe that would be the TEXT type in MySQL you are looking for.
The equivalent on Microsoft SQL server would now be NVARCHAR(MAX) on newer versions, and NTEXT on older versions.
Related Questions in MYSQL
- MySQL Select Rank
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- Push mysql database script to server using git
- Why does mysql stop using indexes when date ranges are added to the query?
- Google Maps API Re-size
- store numpy array in mysql
- Whats wrong with this query? Using ands
- MySQL-Auto increment
- show duplicate values subquery mysql
- Java Web Application Query Is Not Working
- microsoft odbc driver manager data source name not found and no default driver specified
- Setting foreign key in phpMyAdmin
- No responses from google places text search api
- Adding to MAMP database in SQL/PHP
- I want to remove certain parent- and child-divs in all my wordpress posts with php or some other script
Related Questions in SQL
- Can MVC.NET prevent SQL-injection at razor or controller level?
- SQL server not returning all rows
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- Creating a parametrized field name for a SELECT clause
- Combine two rows based on common ID
- Column displays each count
- Slick query for one to optional one (zero or one) relationship
- Aggregate and count in PostgreSQL
- MAX and GROUP BY - SQL
- SQL statement for a tricky 2 table query
- How to create nested selects with sql?
- Pull and push data from and into sql databases using Excel VBA without pasting the data in Excel sheets
- Best Practice for adding columns to a Table in Oracle database
- SQL FIFO STACK using two tables
- SQL Query - Order by String (which contains number and chars)
Related Questions in MS-ACCESS
- Joining date fields from 2 separate tables in Access 2010. Outer join is acting like an inner join
- Access Global not working
- Dividing summed field by another summed field in the same query
- Edit fields in local table linked to PassThrough Query
- Change Index Settings Access VBA
- On click change chart query in ms access
- Access 2013 - Set a field value based on value of another field
- MS Access, Combobox, select fields bases on query, How do I weight the result fields
- Access SQL: Not Equals on Null Text Field
- MS Access If Function
- How to convert MS Access Database to Mysql with french characters
- MS Access: How to group by first column- summing some columns while keeping others the same
- Using an ODBC connection in Access get retrieve data from DB2
- How to Continuously Develop and Deploy an Access 2010 Database Application
- Adding calendar in ms access and view the data of specific day by clicking the date
Related Questions in SQLDATATYPES
- SQL SERVER 2000 TRUNCATES SQL STRING GENERATED USING DYNAMIC SQL
- SQL Server 2012 How to change the data type of a column from bit to datefield?
- Stored Procedure Parameters -> error converting data type nvarchar to money
- What is the meaning of different integer mysql types
- Postgres SQL - select inconsistent date formats from character field
- Is there a reason Oracle doesn't have a time data type and what can I do to simulate it?
- More precision needed from SQL Server Money data type
- Using FME to convert oracle sdo.geometry to SQL geometry datatype
- MySQL different integer datatype operation
- Difference between Varchar(max) and nvarchar(max)
- What does it mean when the size of a VARCHAR2 in Oracle is declared as 1 byte?
- Query Only Works When Using Float Data Type
- Teradata Error 5407 Invalid operation for DateTime or Interval
- creating a new column datatype in rails
- Int data type storage always 4 bytes?
Related Questions in MEMO
- What is a Memo Backup File ? Retrieving data from a .TBK file dump (TheOS POS Sytem)
- Writing MEMO-field in DBF table by PHP
- Delphi create letters with for loop
- Buggy cursor in FireMonkey (Delphi XE2)
- Rotate VCL components in Delphi XE2
- Why React.memo fails to memoize this component?
- How to hook the appearence of ScrollBar in Memo?
- Should useCallback() be used on a function passed as a prop to a child component even if said component is wrapped in a memo()?
- change TextInput value other component will re render again although I wrap it in memo() and useCallback()
- How to persist values after a memory warning viewDidUnload
- Is there any way to disable selecting of text in a memo control?
- Microsoft Access memo datatype to MySQL Datatype
- Long arrays caching issues
- Troubleshooting memo call React+Typescript
- Async function await is not working with memo?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
TEXT would be a good match.
Text is a blob field that is meant to store strings.
blob is the same for binary data.
See: http://dev.mysql.com/doc/refman/5.0/en/blob.html
Make sure you use a text/blob variant that is large enough to hold the data that is currently in your
memofield.When in doubt
longtextwill hold up to 4GB.