Mohsen Pahlevanzadeh skrev den 2013-06-22 01:25:
How can i combine together?
i created username like this:
# sql dump
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
CREATE TABLE IF NOT EXISTS `username` (
`concat(userid,"@",domain)` varchar(257)
);
CREATE TABLE IF NOT EXIS
On Jun 21, 2013, at 4:25 PM, Mohsen Pahlevanzadeh wrote:
> Dear all,
>
> I read we create the following table in wiki2 :
> CREATE TABLE users (
>userid VARCHAR(128) NOT NULL,
>domain VARCHAR(128) NOT NULL,
>password VARCHAR(64) NOT NULL,
>home VARCHAR(255) NOT NULL,
>uid INTEG
Dear all,
I read we create the following table in wiki2 :
CREATE TABLE users (
userid VARCHAR(128) NOT NULL,
domain VARCHAR(128) NOT NULL,
password VARCHAR(64) NOT NULL,
home VARCHAR(255) NOT NULL,
uid INTEGER NOT NULL,
gid INTEGER NOT NULL
);
But i read the following text