I have a query from SQL Server which I want to run in Mysql. but I cannot find any replacement for uniqueidentifier
keyword from SQL Server script to MYSQL Script.
Here is the query
CREATE TABLE foo(
myid uniqueidentifier NOT NULL,
barid uniqueidentifier NOT NULL
)
What will be the query in Mysql for the same above SQL Server script?